aboutsummaryrefslogtreecommitdiffstats
path: root/light/trie_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'light/trie_test.go')
-rw-r--r--light/trie_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/light/trie_test.go b/light/trie_test.go
index 0d6b2cc1d..84c6f162f 100644
--- a/light/trie_test.go
+++ b/light/trie_test.go
@@ -34,10 +34,10 @@ import (
func TestNodeIterator(t *testing.T) {
var (
- fulldb, _ = ethdb.NewMemDatabase()
- lightdb, _ = ethdb.NewMemDatabase()
- gspec = core.Genesis{Alloc: core.GenesisAlloc{testBankAddress: {Balance: testBankFunds}}}
- genesis = gspec.MustCommit(fulldb)
+ fulldb = ethdb.NewMemDatabase()
+ lightdb = ethdb.NewMemDatabase()
+ gspec = core.Genesis{Alloc: core.GenesisAlloc{testBankAddress: {Balance: testBankFunds}}}
+ genesis = gspec.MustCommit(fulldb)
)
gspec.MustCommit(lightdb)
blockchain, _ := core.NewBlockChain(fulldb, nil, params.TestChainConfig, ethash.NewFullFaker(), vm.Config{})