mirror of https://github.com/status-im/op-geth.git
Serializing block
This commit is contained in:
parent
d8c0b0c899
commit
8301d154ae
43
block.go
43
block.go
|
@ -2,9 +2,20 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
_"fmt"
|
_"fmt"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Block struct {
|
type Block struct {
|
||||||
|
RlpSerializer
|
||||||
|
|
||||||
|
number uint32
|
||||||
|
prevHash string
|
||||||
|
uncles []*Block
|
||||||
|
coinbase string
|
||||||
|
// state xxx
|
||||||
|
difficulty int
|
||||||
|
time time.Time
|
||||||
|
nonce int
|
||||||
transactions []*Transaction
|
transactions []*Transaction
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -12,6 +23,8 @@ func NewBlock(/* TODO use raw data */transactions []*Transaction) *Block {
|
||||||
block := &Block{
|
block := &Block{
|
||||||
// Slice of transactions to include in this block
|
// Slice of transactions to include in this block
|
||||||
transactions: transactions,
|
transactions: transactions,
|
||||||
|
|
||||||
|
time: time.Now(),
|
||||||
}
|
}
|
||||||
|
|
||||||
return block
|
return block
|
||||||
|
@ -19,3 +32,33 @@ func NewBlock(/* TODO use raw data */transactions []*Transaction) *Block {
|
||||||
|
|
||||||
func (block *Block) Update() {
|
func (block *Block) Update() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (block *Block) Hash() string {
|
||||||
|
return Sha256Hex(block.MarshalRlp())
|
||||||
|
}
|
||||||
|
|
||||||
|
func (block *Block) MarshalRlp() []byte {
|
||||||
|
// Encoding method requires []interface{} type. It's actual a slice of strings
|
||||||
|
encTx := make([]string, len(block.transactions))
|
||||||
|
for i, tx := range block.transactions {
|
||||||
|
encTx[i] = string(tx.MarshalRlp())
|
||||||
|
}
|
||||||
|
|
||||||
|
enc := RlpEncode([]interface{}{
|
||||||
|
block.number,
|
||||||
|
block.prevHash,
|
||||||
|
// Sha of uncles
|
||||||
|
block.coinbase,
|
||||||
|
// root state
|
||||||
|
Sha256Bin([]byte(RlpEncode(encTx))),
|
||||||
|
block.difficulty,
|
||||||
|
block.time,
|
||||||
|
block.nonce,
|
||||||
|
// extra?
|
||||||
|
})
|
||||||
|
|
||||||
|
return []byte(enc)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (block *Block) UnmarshalRlp(data []byte) {
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue