diff options
author | Felix Lange <fjl@twurst.com> | 2016-03-03 07:46:56 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2016-04-12 21:56:49 +0800 |
commit | 4e6d8b348d864c8af74e0aca114bf730e42a160a (patch) | |
tree | eca8056c836109c0b63a81616bc7c9297a198f9b /accounts/accounts_test.go | |
parent | 85e6c40c0081bd0db80448640db648887804010c (diff) | |
download | go-tangerine-4e6d8b348d864c8af74e0aca114bf730e42a160a.tar.gz go-tangerine-4e6d8b348d864c8af74e0aca114bf730e42a160a.tar.zst go-tangerine-4e6d8b348d864c8af74e0aca114bf730e42a160a.zip |
accounts: fix go vet warnings
Diffstat (limited to 'accounts/accounts_test.go')
-rw-r--r-- | accounts/accounts_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/accounts_test.go b/accounts/accounts_test.go index 02dd74c8a..4a1d1b848 100644 --- a/accounts/accounts_test.go +++ b/accounts/accounts_test.go @@ -120,7 +120,7 @@ func TestSignRace(t *testing.T) { } if err := am.TimedUnlock(a1.Address, "", 15*time.Millisecond); err != nil { - t.Fatalf("could not unlock the test account", err) + t.Fatal("could not unlock the test account", err) } end := time.Now().Add(500 * time.Millisecond) for time.Now().Before(end) { |