Add extra data field

This commit is contained in:
Matt Krump
2017-12-27 12:10:08 -06:00
parent c992186846
commit cb4e745464
8 changed files with 26 additions and 10 deletions
+3 -2
View File
@@ -2,16 +2,17 @@ package core
type Block struct {
Difficulty int64
ExtraData string
GasLimit int64
GasUsed int64
Hash string
IsFinal bool
Miner string
Nonce string
Number int64
Miner string
ParentHash string
Size int64
Time int64
Transactions []Transaction
UncleHash string
IsFinal bool
}