From 4a090a1bab8896e8b4715058931fd23d4166f361 Mon Sep 17 00:00:00 2001
From: Hsien-Tang Kao <htkao@pm.me>
Date: Tue, 19 Feb 2019 00:34:55 -0800
Subject: [PATCH] accounts/abi: fix error message format (#19122)

---
 accounts/abi/abi.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/accounts/abi/abi.go b/accounts/abi/abi.go
index 08d5db979..ba1774c64 100644
--- a/accounts/abi/abi.go
+++ b/accounts/abi/abi.go
@@ -136,7 +136,7 @@ func (abi *ABI) UnmarshalJSON(data []byte) error {
 // returns nil if none found
 func (abi *ABI) MethodById(sigdata []byte) (*Method, error) {
 	if len(sigdata) < 4 {
-		return nil, fmt.Errorf("data too short (% bytes) for abi method lookup", len(sigdata))
+		return nil, fmt.Errorf("data too short (%d bytes) for abi method lookup", len(sigdata))
 	}
 	for _, method := range abi.Methods {
 		if bytes.Equal(method.Id(), sigdata[:4]) {
-- 
GitLab