aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/accounts_test.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-03-03 07:46:56 +0800
committerFelix Lange <fjl@twurst.com>2016-04-12 21:56:49 +0800
commit4e6d8b348d864c8af74e0aca114bf730e42a160a (patch)
treeeca8056c836109c0b63a81616bc7c9297a198f9b /accounts/accounts_test.go
parent85e6c40c0081bd0db80448640db648887804010c (diff)
downloaddexon-4e6d8b348d864c8af74e0aca114bf730e42a160a.tar
dexon-4e6d8b348d864c8af74e0aca114bf730e42a160a.tar.gz
dexon-4e6d8b348d864c8af74e0aca114bf730e42a160a.tar.bz2
dexon-4e6d8b348d864c8af74e0aca114bf730e42a160a.tar.lz
dexon-4e6d8b348d864c8af74e0aca114bf730e42a160a.tar.xz
dexon-4e6d8b348d864c8af74e0aca114bf730e42a160a.tar.zst
dexon-4e6d8b348d864c8af74e0aca114bf730e42a160a.zip
accounts: fix go vet warnings
Diffstat (limited to 'accounts/accounts_test.go')
-rw-r--r--accounts/accounts_test.go2
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) {