From 222e62d7f10ffe22dd606aea9c15e1547986c4ab Mon Sep 17 00:00:00 2001 From: Howard Braham Date: Mon, 17 Sep 2018 20:04:10 -0700 Subject: Bug Fix: #1789 and #4525 eth.getCode() with no contract --- app/_locales/en/messages.json | 3 +++ 1 file changed, 3 insertions(+) (limited to 'app/_locales') diff --git a/app/_locales/en/messages.json b/app/_locales/en/messages.json index 66f378ab8..94716a7ad 100644 --- a/app/_locales/en/messages.json +++ b/app/_locales/en/messages.json @@ -1154,6 +1154,9 @@ "transactionError": { "message": "Transaction Error. Exception thrown in contract code." }, + "transactionErrorNoContract": { + "message": "Trying to call a contract function at an address that is not a contract address." + }, "transactionMemo": { "message": "Transaction memo (optional)" }, -- cgit v1.2.3 From 17a856cfd35a0e419524cf00e852be6c797b1e0b Mon Sep 17 00:00:00 2001 From: kumavis Date: Sun, 21 Oct 2018 00:57:45 -0400 Subject: send tx - validate - simplify error message for attempting to call function on non-contract address --- app/_locales/en/messages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/_locales') diff --git a/app/_locales/en/messages.json b/app/_locales/en/messages.json index 4cdf6b8dc..e2fb3fc13 100644 --- a/app/_locales/en/messages.json +++ b/app/_locales/en/messages.json @@ -1176,7 +1176,7 @@ "message": "Transaction Error. Exception thrown in contract code." }, "transactionErrorNoContract": { - "message": "Trying to call a contract function at an address that is not a contract address." + "message": "Trying to call a function on a non-contract address." }, "transactionMemo": { "message": "Transaction memo (optional)" -- cgit v1.2.3