diff options
Diffstat (limited to 'cmd/zoo/monkey/monkey.go')
-rw-r--r-- | cmd/zoo/monkey/monkey.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/zoo/monkey/monkey.go b/cmd/zoo/monkey/monkey.go index c228f1814..da32b42cc 100644 --- a/cmd/zoo/monkey/monkey.go +++ b/cmd/zoo/monkey/monkey.go @@ -29,8 +29,8 @@ import ( "os" "time" - "github.com/dexon-foundation/dexon/cmd/zoo/client" - "github.com/dexon-foundation/dexon/crypto" + "github.com/tangerine-network/go-tangerine/cmd/zoo/client" + "github.com/tangerine-network/go-tangerine/crypto" ) var config *MonkeyConfig @@ -110,7 +110,7 @@ func New(ep string, source *ecdsa.PrivateKey, num int, timeout time.Duration) *M } func (m *Monkey) Distribute() { - fmt.Println("Distributing DEX to random accounts ...") + fmt.Println("Distributing coins to random accounts ...") address := crypto.PubkeyToAddress(m.source.PublicKey) nonce, err := m.PendingNonceAt(context.Background(), address) if err != nil { |