Skip to content

Commit

Permalink
fix(TransferEth): sendEthInitialized -> initialized
Browse files Browse the repository at this point in the history
  • Loading branch information
plondon committed Jun 13, 2018
1 parent e4cfdbf commit d6574d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -28,7 +28,7 @@ export default ({ coreSagas }) => {
yield put(A.sendEthPaymentUpdated(Remote.of(payment.value())))
yield
} catch (e) {
yield put(actions.logs.logErrorMessage(logLocation, 'sendEthInitialized', e))
yield put(actions.logs.logErrorMessage(logLocation, 'initialized', e))
}
}

Expand Down
Expand Up @@ -15,7 +15,7 @@ class TransferEthContainer extends React.PureComponent {
}

componentDidMount () {
this.props.sendEthActions.sendEthInitialized({ from: this.props.addr, type: 'LEGACY' })
this.props.sendEthActions.initialized({ from: this.props.addr, type: 'LEGACY' })
}

componentDidUpdate (prevProps) {
Expand Down

0 comments on commit d6574d9

Please sign in to comment.