aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/send_')
-rw-r--r--ui/app/components/send_/send.container.js4
-rw-r--r--ui/app/components/send_/tests/send-container.test.js6
2 files changed, 5 insertions, 5 deletions
diff --git a/ui/app/components/send_/send.container.js b/ui/app/components/send_/send.container.js
index 8efaf5aaf..df28caca8 100644
--- a/ui/app/components/send_/send.container.js
+++ b/ui/app/components/send_/send.container.js
@@ -21,7 +21,7 @@ import {
} from './send.selectors'
import {
updateSendTokenBalance,
- updateGasTotal,
+ updateGasData,
setGasTotal,
} from '../../actions'
import {
@@ -73,7 +73,7 @@ function mapDispatchToProps (dispatch) {
}) => {
console.log(`editingTransactionId`, editingTransactionId)
!editingTransactionId
- ? dispatch(updateGasTotal({ selectedAddress, selectedToken, data }))
+ ? dispatch(updateGasData({ selectedAddress, selectedToken, data }))
: dispatch(setGasTotal(calcGasTotal(gasLimit, gasPrice)))
},
updateSendTokenBalance: ({ selectedToken, tokenContract, address }) => {
diff --git a/ui/app/components/send_/tests/send-container.test.js b/ui/app/components/send_/tests/send-container.test.js
index 7b6ca1f7b..e589cca05 100644
--- a/ui/app/components/send_/tests/send-container.test.js
+++ b/ui/app/components/send_/tests/send-container.test.js
@@ -7,7 +7,7 @@ let mapDispatchToProps
const actionSpies = {
updateSendTokenBalance: sinon.spy(),
- updateGasTotal: sinon.spy(),
+ updateGasData: sinon.spy(),
setGasTotal: sinon.spy(),
}
const duckActionSpies = {
@@ -104,14 +104,14 @@ describe('send container', () => {
)
})
- it('should dispatch an updateGasTotal action when editingTransactionId is falsy', () => {
+ it('should dispatch an updateGasData action when editingTransactionId is falsy', () => {
const { selectedAddress, selectedToken, data } = mockProps
mapDispatchToPropsObject.updateAndSetGasTotal(
Object.assign(mockProps, {editingTransactionId: false})
)
assert(dispatchSpy.calledOnce)
assert.deepEqual(
- actionSpies.updateGasTotal.getCall(0).args[0],
+ actionSpies.updateGasData.getCall(0).args[0],
{ selectedAddress, selectedToken, data }
)
})