Update go-crypto, move testutils into types

This commit is contained in:
Ethan Frey
2017-02-25 00:12:15 +01:00
parent 4ad645f318
commit 1fd2d17cd9
9 changed files with 57 additions and 74 deletions
+1 -2
View File
@@ -6,7 +6,6 @@ import (
"github.com/stretchr/testify/assert"
abci "github.com/tendermint/abci/types"
"github.com/tendermint/basecoin/app"
"github.com/tendermint/basecoin/testutils"
"github.com/tendermint/basecoin/types"
crypto "github.com/tendermint/go-crypto"
"github.com/tendermint/go-wire"
@@ -27,7 +26,7 @@ func TestCounterPlugin(t *testing.T) {
bcApp.RegisterPlugin(counterPlugin)
// Account initialization
test1PrivAcc := testutils.PrivAccountFromSecret("test1")
test1PrivAcc := types.PrivAccountFromSecret("test1")
// Seed Basecoin with account
test1Acc := test1PrivAcc.Account