|
|
@ -38,6 +38,7 @@ export default class ConfirmTransactionBase extends Component { |
|
|
|
isTxReprice: PropTypes.bool, |
|
|
|
isTxReprice: PropTypes.bool, |
|
|
|
methodData: PropTypes.object, |
|
|
|
methodData: PropTypes.object, |
|
|
|
nonce: PropTypes.string, |
|
|
|
nonce: PropTypes.string, |
|
|
|
|
|
|
|
assetImage: PropTypes.string, |
|
|
|
sendTransaction: PropTypes.func, |
|
|
|
sendTransaction: PropTypes.func, |
|
|
|
showCustomizeGasModal: PropTypes.func, |
|
|
|
showCustomizeGasModal: PropTypes.func, |
|
|
|
showTransactionConfirmedModal: PropTypes.func, |
|
|
|
showTransactionConfirmedModal: PropTypes.func, |
|
|
@ -310,6 +311,7 @@ export default class ConfirmTransactionBase extends Component { |
|
|
|
contentComponent, |
|
|
|
contentComponent, |
|
|
|
onEdit, |
|
|
|
onEdit, |
|
|
|
nonce, |
|
|
|
nonce, |
|
|
|
|
|
|
|
assetImage, |
|
|
|
warning, |
|
|
|
warning, |
|
|
|
} = this.props |
|
|
|
} = this.props |
|
|
|
const { submitting, submitError } = this.state |
|
|
|
const { submitting, submitError } = this.state |
|
|
@ -334,6 +336,7 @@ export default class ConfirmTransactionBase extends Component { |
|
|
|
dataComponent={this.renderData()} |
|
|
|
dataComponent={this.renderData()} |
|
|
|
contentComponent={contentComponent} |
|
|
|
contentComponent={contentComponent} |
|
|
|
nonce={nonce} |
|
|
|
nonce={nonce} |
|
|
|
|
|
|
|
assetImage={assetImage} |
|
|
|
identiconAddress={identiconAddress} |
|
|
|
identiconAddress={identiconAddress} |
|
|
|
errorMessage={errorMessage || submitError} |
|
|
|
errorMessage={errorMessage || submitError} |
|
|
|
errorKey={propsErrorKey || errorKey} |
|
|
|
errorKey={propsErrorKey || errorKey} |
|
|
|