From 0e2a533a681f137a585883412bc630e3bd8a496e Mon Sep 17 00:00:00 2001 From: Evgeny Danienko <6655321@bk.ru> Date: Wed, 13 Nov 2019 14:24:27 +0300 Subject: [PATCH] fmt --- tests/statedb_insert_chain_transaction_test.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/statedb_insert_chain_transaction_test.go b/tests/statedb_insert_chain_transaction_test.go index ec65502e5..e1423a501 100644 --- a/tests/statedb_insert_chain_transaction_test.go +++ b/tests/statedb_insert_chain_transaction_test.go @@ -54,7 +54,7 @@ func TestInsertIncorrectStateRootDifferentAccounts(t *testing.T) { } // insert a correct block - blockchain, blocks, receipts, err = genBlocks(data.genesisSpec, map[int]tx{ + blockchain, blocks, _, err = genBlocks(data.genesisSpec, map[int]tx{ 0: { getBlockTx(data.addresses[1], to, big.NewInt(5000)), data.keys[1], @@ -115,7 +115,7 @@ func TestInsertIncorrectStateRootSameAccount(t *testing.T) { } // insert a correct block - blockchain, blocks, receipts, err = genBlocks(data.genesisSpec, map[int]tx{ + blockchain, blocks, _, err = genBlocks(data.genesisSpec, map[int]tx{ 0: { getBlockTx(from, to, big.NewInt(5000)), fromKey, @@ -173,7 +173,7 @@ func TestInsertIncorrectStateRootSameAccountSameAmount(t *testing.T) { } // insert a correct block - blockchain, blocks, receipts, err = genBlocks(data.genesisSpec, map[int]tx{ + blockchain, blocks, _, err = genBlocks(data.genesisSpec, map[int]tx{ 0: { getBlockTx(from, to, big.NewInt(1000)), fromKey, @@ -231,7 +231,7 @@ func TestInsertIncorrectStateRootAllFundsRoot(t *testing.T) { } // insert a correct block - blockchain, blocks, receipts, err = genBlocks(data.genesisSpec, map[int]tx{ + blockchain, blocks, _, err = genBlocks(data.genesisSpec, map[int]tx{ 0: { getBlockTx(from, to, big.NewInt(1000)), fromKey, @@ -288,7 +288,7 @@ func TestInsertIncorrectStateRootAllFunds(t *testing.T) { } // insert a correct block - blockchain, blocks, receipts, err = genBlocks(data.genesisSpec, map[int]tx{ + blockchain, blocks, _, err = genBlocks(data.genesisSpec, map[int]tx{ 0: { getBlockTx(from, to, big.NewInt(1000)), fromKey,