aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/helpers/transactions.util.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/helpers/transactions.util.js')
-rw-r--r--ui/app/helpers/transactions.util.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/helpers/transactions.util.js b/ui/app/helpers/transactions.util.js
index 0f1ed70a..32eaa3c6 100644
--- a/ui/app/helpers/transactions.util.js
+++ b/ui/app/helpers/transactions.util.js
@@ -11,7 +11,7 @@ import {
TOKEN_METHOD_TRANSFER,
TOKEN_METHOD_APPROVE,
TOKEN_METHOD_TRANSFER_FROM,
- SEND_ETHER_ACTION_KEY,
+ SEND_DEXON_ACTION_KEY,
DEPLOY_CONTRACT_ACTION_KEY,
APPROVE_ACTION_KEY,
SEND_TOKEN_ACTION_KEY,
@@ -84,7 +84,7 @@ export async function getTransactionActionKey (transaction, methodData) {
const toSmartContract = await isSmartContractAddress(to)
if (!toSmartContract) {
- return SEND_ETHER_ACTION_KEY
+ return SEND_DEXON_ACTION_KEY
}
const { name } = methodData
@@ -105,7 +105,7 @@ export async function getTransactionActionKey (transaction, methodData) {
return undefined
}
} else {
- return SEND_ETHER_ACTION_KEY
+ return SEND_DEXON_ACTION_KEY
}
}