diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-24 05:05:12 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-24 05:05:12 +0800 |
commit | 7b8a47f4846cd821ecc1f96e381980f7bca1922b (patch) | |
tree | 705533520f1e63911112c016367b2ff8a010eb7b /tests | |
parent | 0eaa023ffa48af300dde8361a2dcbeaa754bc2c1 (diff) | |
download | dexon-7b8a47f4846cd821ecc1f96e381980f7bca1922b.tar.gz dexon-7b8a47f4846cd821ecc1f96e381980f7bca1922b.tar.zst dexon-7b8a47f4846cd821ecc1f96e381980f7bca1922b.zip |
removed legacy code
Diffstat (limited to 'tests')
-rw-r--r-- | tests/blocktest.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/blocktest.go b/tests/blocktest.go index 34bd69ac8..d813ebeec 100644 --- a/tests/blocktest.go +++ b/tests/blocktest.go @@ -13,9 +13,9 @@ import ( "strings" "github.com/ethereum/go-ethereum/common" + "github.com/ethereum/go-ethereum/core/state" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/rlp" - "github.com/ethereum/go-ethereum/core/state" ) // Block Test JSON Format @@ -172,7 +172,6 @@ func mustConvertGenesis(testGenesis btHeader) *types.Block { hdr.Number = big.NewInt(0) b := types.NewBlockWithHeader(hdr) b.Td = new(big.Int) - b.Reward = new(big.Int) return b } |