aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/block_chain_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethchain/block_chain_test.go')
-rw-r--r--ethchain/block_chain_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/ethchain/block_chain_test.go b/ethchain/block_chain_test.go
index 4e4bb9dd4..ecaf8ca89 100644
--- a/ethchain/block_chain_test.go
+++ b/ethchain/block_chain_test.go
@@ -50,7 +50,7 @@ func (tm *TestManager) Broadcast(msgType ethwire.MsgType, data []interface{}) {
}
func NewTestManager() *TestManager {
- ethutil.ReadConfig(".ethtest", ethutil.LogStd)
+ ethutil.ReadConfig(".ethtest", ethutil.LogStd, "")
db, err := ethdb.NewMemDatabase()
if err != nil {
@@ -74,7 +74,7 @@ func NewTestManager() *TestManager {
func (tm *TestManager) AddFakeBlock(blk []byte) error {
block := NewBlockFromBytes(blk)
tm.Blocks = append(tm.Blocks, block)
- err := tm.StateManager().ProcessBlock(tm.StateManager().CurrentState(), block, false)
+ err := tm.StateManager().Process(block, false)
return err
}
func (tm *TestManager) CreateChain1() error {