diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-01-05 23:34:40 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | 937aef72f77aa9a60aa1032a9e6dba1a409f3686 (patch) | |
tree | 9e227b23fe010000d5df430a5aeb1af789c0da06 /dex | |
parent | 1c4c0eb0e289f8325141d80d2e467ab4a6c38900 (diff) | |
download | dexon-937aef72f77aa9a60aa1032a9e6dba1a409f3686.tar.gz dexon-937aef72f77aa9a60aa1032a9e6dba1a409f3686.tar.zst dexon-937aef72f77aa9a60aa1032a9e6dba1a409f3686.zip |
dex: fix test due to consensus-core change
Diffstat (limited to 'dex')
-rw-r--r-- | dex/app_test.go | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/dex/app_test.go b/dex/app_test.go index 82bf8a6f6..9278160fb 100644 --- a/dex/app_test.go +++ b/dex/app_test.go @@ -154,7 +154,7 @@ func TestVerifyBlock(t *testing.T) { big.NewInt(int64(dex.chainConfig.Dexcon.NumChains))) // Prepare normal block. - block := coreTypes.NewBlock() + block := &coreTypes.Block{} block.Hash = coreCommon.NewRandomHash() block.Position.ChainID = uint32(chainID.Uint64()) block.Position.Height = 1 @@ -170,7 +170,7 @@ func TestVerifyBlock(t *testing.T) { } // Prepare invalid nonce tx. - block = coreTypes.NewBlock() + block = &coreTypes.Block{} block.Hash = coreCommon.NewRandomHash() block.Position.ChainID = uint32(chainID.Uint64()) block.Position.Height = 1 @@ -186,7 +186,7 @@ func TestVerifyBlock(t *testing.T) { } // Prepare invalid block height. - block = coreTypes.NewBlock() + block = &coreTypes.Block{} block.Hash = coreCommon.NewRandomHash() block.Position.ChainID = uint32(chainID.Uint64()) block.Position.Height = 2 @@ -202,7 +202,7 @@ func TestVerifyBlock(t *testing.T) { } // Prepare reach block limit. - block = coreTypes.NewBlock() + block = &coreTypes.Block{} block.Hash = coreCommon.NewRandomHash() block.Position.ChainID = uint32(chainID.Uint64()) block.Position.Height = 1 @@ -218,7 +218,7 @@ func TestVerifyBlock(t *testing.T) { } // Prepare insufficient funds. - block = coreTypes.NewBlock() + block = &coreTypes.Block{} block.Hash = coreCommon.NewRandomHash() block.Position.ChainID = uint32(chainID.Uint64()) block.Position.Height = 1 @@ -252,7 +252,7 @@ func TestVerifyBlock(t *testing.T) { } // Prepare invalid intrinsic gas. - block = coreTypes.NewBlock() + block = &coreTypes.Block{} block.Hash = coreCommon.NewRandomHash() block.Position.ChainID = uint32(chainID.Uint64()) block.Position.Height = 1 @@ -286,7 +286,7 @@ func TestVerifyBlock(t *testing.T) { } // Prepare invalid transactions with nonce. - block = coreTypes.NewBlock() + block = &coreTypes.Block{} block.Hash = coreCommon.NewRandomHash() block.Position.ChainID = uint32(chainID.Uint64()) block.Position.Height = 1 @@ -364,7 +364,7 @@ func TestBlockConfirmed(t *testing.T) { expectCost.Add(&expectCost, &cost) expectNonce = nonce - block := coreTypes.NewBlock() + block := &coreTypes.Block{} block.Hash = coreCommon.NewRandomHash() block.Witness = witness block.Payload = payload @@ -650,7 +650,7 @@ func prepareConfirmedBlocks(dex *Dexon, keys []*ecdsa.PrivateKey, txNum int) (bl return } - block := coreTypes.NewBlock() + block := &coreTypes.Block{} block.Hash = coreCommon.NewRandomHash() block.Witness = witness block.Payload = payload |