Skip to content

Commit

Permalink
Update tests to use account package.
Browse files Browse the repository at this point in the history
  • Loading branch information
divan committed Sep 25, 2017
1 parent a9f8a56 commit f3386d7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion geth/jail/jail_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import (
"testing"
"time"

"github.com/status-im/status-go/geth/account"
"github.com/status-im/status-go/geth/jail"
"github.com/status-im/status-go/geth/node"
"github.com/status-im/status-go/geth/params"
Expand Down Expand Up @@ -40,7 +41,7 @@ func (s *JailTestSuite) SetupTest() {
nodeManager := node.NewNodeManager()
require.NotNil(nodeManager)

accountManager := node.NewAccountManager(nodeManager)
accountManager := account.NewManager(nodeManager)
require.NotNil(accountManager)

txQueueManager := node.NewTxQueueManager(nodeManager, accountManager)
Expand Down

0 comments on commit f3386d7

Please sign in to comment.