Add block rewards to db

This commit is contained in:
Matt Krump
2017-12-28 11:58:26 -06:00
parent 3ca4370221
commit 8b024bade9
10 changed files with 149 additions and 121 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
package core
type Block struct {
BlockReward float64
Reward float64
Difficulty int64
ExtraData string
GasLimit int64
@@ -16,5 +16,5 @@ type Block struct {
Time int64
Transactions []Transaction
UncleHash string
UncleReward float64
UnclesReward float64
}