From 5139086130bd75234097fb6dea1c0e104a27a418 Mon Sep 17 00:00:00 2001 From: coolestowl <97215481+coolestowl@users.noreply.github.com> Date: Fri, 19 Jul 2024 07:28:49 +0000 Subject: [PATCH 1/3] fix: Envelope use json.Number --- client.go | 2 +- response.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client.go b/client.go index e69679a..f6ad1b8 100644 --- a/client.go +++ b/client.go @@ -172,7 +172,7 @@ func (c *Client) call(module, action string, param map[string]interface{}, outco err = wrapErr(err, "json unmarshal envelope") return } - if envelope.Status != 1 { + if envelope.Status != "1" { err = fmt.Errorf("etherscan server: %s", envelope.Message) return } diff --git a/response.go b/response.go index 5c418cf..fd523f7 100644 --- a/response.go +++ b/response.go @@ -17,7 +17,7 @@ import ( // Envelope is the carrier of nearly every response type Envelope struct { // 1 for good, 0 for error - Status int `json:"status,string"` + Status json.Number `json:"status"` // OK for good, other words when Status equals 0 Message string `json:"message"` // where response lies From 5a42fd33a8e1ec14669d49ea63dc751d20bd4926 Mon Sep 17 00:00:00 2001 From: coolestowl <97215481+coolestowl@users.noreply.github.com> Date: Fri, 19 Jul 2024 07:54:06 +0000 Subject: [PATCH 2/3] fix: convert empty string to int --- client.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client.go b/client.go index f6ad1b8..d9b469e 100644 --- a/client.go +++ b/client.go @@ -166,6 +166,8 @@ func (c *Client) call(module, action string, param map[string]interface{}, outco return } + fixedContent := bytes.ReplaceAll(content.Bytes(), []byte(`"transactionIndex":""`), []byte(`"transactionIndex":"0"`)) + var envelope Envelope err = json.Unmarshal(content.Bytes(), &envelope) if err != nil { From bd0f3728c5843e3f73fea09a81b92f54b1317280 Mon Sep 17 00:00:00 2001 From: coolestowl <97215481+coolestowl@users.noreply.github.com> Date: Fri, 19 Jul 2024 07:56:30 +0000 Subject: [PATCH 3/3] fix --- client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.go b/client.go index d9b469e..2199ba6 100644 --- a/client.go +++ b/client.go @@ -169,7 +169,7 @@ func (c *Client) call(module, action string, param map[string]interface{}, outco fixedContent := bytes.ReplaceAll(content.Bytes(), []byte(`"transactionIndex":""`), []byte(`"transactionIndex":"0"`)) var envelope Envelope - err = json.Unmarshal(content.Bytes(), &envelope) + err = json.Unmarshal(fixedContent, &envelope) if err != nil { err = wrapErr(err, "json unmarshal envelope") return