From 21afda2506f8dd0ccb22fb30a650d2d5754ad404 Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Wed, 15 Jan 2014 18:23:02 -0500 Subject: [PATCH] Fix tests for new NewWallet func signature. --- wallet/wallet_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallet/wallet_test.go b/wallet/wallet_test.go index be090ec..27ab05b 100644 --- a/wallet/wallet_test.go +++ b/wallet/wallet_test.go @@ -87,7 +87,7 @@ func TestBtcAddressSerializer(t *testing.T) { func TestWalletCreationSerialization(t *testing.T) { createdAt := &BlockStamp{} w1, err := NewWallet("banana wallet", "A wallet for testing.", - []byte("banana"), btcwire.MainNet, createdAt) + []byte("banana"), btcwire.MainNet, createdAt, 100) if err != nil { t.Error("Error creating new wallet: " + err.Error()) return