diff options
author | kumavis <kumavis@users.noreply.github.com> | 2018-10-30 09:47:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-30 09:47:07 +0800 |
commit | 310229d22e5e916e8d6e3b1a469b9b196e0f70c2 (patch) | |
tree | 518bd3f5fb01c792fe2e44db3aace1c20f22c7e1 /ui/app/constants/error-keys.js | |
parent | 1bb4a8428c73c1f1137793b25900db159eec3fa8 (diff) | |
parent | 9b42416fc0d92662d1a21759db357e7f439d7a7b (diff) | |
download | tangerine-wallet-browser-310229d22e5e916e8d6e3b1a469b9b196e0f70c2.tar tangerine-wallet-browser-310229d22e5e916e8d6e3b1a469b9b196e0f70c2.tar.gz tangerine-wallet-browser-310229d22e5e916e8d6e3b1a469b9b196e0f70c2.tar.bz2 tangerine-wallet-browser-310229d22e5e916e8d6e3b1a469b9b196e0f70c2.tar.lz tangerine-wallet-browser-310229d22e5e916e8d6e3b1a469b9b196e0f70c2.tar.xz tangerine-wallet-browser-310229d22e5e916e8d6e3b1a469b9b196e0f70c2.tar.zst tangerine-wallet-browser-310229d22e5e916e8d6e3b1a469b9b196e0f70c2.zip |
Merge pull request #5567 from MetaMask/HowardBraham-develop
Feature: Warn when attempting to send tx with data to non-contract
Diffstat (limited to 'ui/app/constants/error-keys.js')
-rw-r--r-- | ui/app/constants/error-keys.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/app/constants/error-keys.js b/ui/app/constants/error-keys.js index f70ed3b19..704064c96 100644 --- a/ui/app/constants/error-keys.js +++ b/ui/app/constants/error-keys.js @@ -1,3 +1,4 @@ export const INSUFFICIENT_FUNDS_ERROR_KEY = 'insufficientFunds' export const GAS_LIMIT_TOO_LOW_ERROR_KEY = 'gasLimitTooLow' export const TRANSACTION_ERROR_KEY = 'transactionError' +export const TRANSACTION_NO_CONTRACT_ERROR_KEY = 'transactionErrorNoContract' |