accounts/abi: address review concerns

This commit is contained in:
Martin Holst Swende
2018-01-13 15:12:52 +01:00
parent f0f594d045
commit 08c5d4dd27
4 changed files with 5 additions and 352 deletions

View File

@ -691,7 +691,7 @@ func TestABI_MethodById(t *testing.T) {
a := fmt.Sprintf("%v", m)
m2, err := abi.MethodById(m.Id())
if err != nil {
t.Fatal(err)
t.Fatalf("Failed to look up ABI method: %v", err)
}
b := fmt.Sprintf("%v", m2)
if a != b {