aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-09-22 02:45:59 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-09-22 02:45:59 +0800
commit7bf8e949e7e4da47d8fd094ee692ec6b30b6a046 (patch)
treea94fa5918507ae17f78f650e2f4caaa88a9ba08c /eth
parentbe76a68aeacccce8ad63270a98beb34db37f0d88 (diff)
parenteaa4473dbd4ad404b85f8f0f63b0418a782351b4 (diff)
downloaddexon-7bf8e949e7e4da47d8fd094ee692ec6b30b6a046.tar
dexon-7bf8e949e7e4da47d8fd094ee692ec6b30b6a046.tar.gz
dexon-7bf8e949e7e4da47d8fd094ee692ec6b30b6a046.tar.bz2
dexon-7bf8e949e7e4da47d8fd094ee692ec6b30b6a046.tar.lz
dexon-7bf8e949e7e4da47d8fd094ee692ec6b30b6a046.tar.xz
dexon-7bf8e949e7e4da47d8fd094ee692ec6b30b6a046.tar.zst
dexon-7bf8e949e7e4da47d8fd094ee692ec6b30b6a046.zip
Merge pull request #1669 from obscuren/tx-pool-auto-resend
core, xeth: chain reorg move missing transactions to transaction pool
Diffstat (limited to 'eth')
-rw-r--r--eth/helper_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/helper_test.go b/eth/helper_test.go
index 3a799e6f6..034751f7f 100644
--- a/eth/helper_test.go
+++ b/eth/helper_test.go
@@ -33,7 +33,7 @@ func newTestProtocolManager(blocks int, generator func(int, *core.BlockGen), new
evmux = new(event.TypeMux)
pow = new(core.FakePow)
db, _ = ethdb.NewMemDatabase()
- genesis = core.WriteGenesisBlockForTesting(db, testBankAddress, testBankFunds)
+ genesis = core.WriteGenesisBlockForTesting(db, core.GenesisAccount{testBankAddress, testBankFunds})
chainman, _ = core.NewChainManager(db, pow, evmux)
blockproc = core.NewBlockProcessor(db, pow, chainman, evmux)
)