Show error while allowing confirmation of transaction where simulation fails

feature/default_network_editable
Dan Miller 6 years ago
parent 1d4ee6bf76
commit 973325a6c4
  1. 2
      ui/app/components/pages/confirm-transaction-base/confirm-transaction-base.component.js
  2. 2
      ui/app/constants/error-keys.js

@ -124,7 +124,7 @@ export default class ConfirmTransactionBase extends Component {
if (simulationFails) { if (simulationFails) {
return { return {
valid: false, valid: true,
errorKey: TRANSACTION_ERROR_KEY, errorKey: TRANSACTION_ERROR_KEY,
} }
} }

@ -1,3 +1,3 @@
export const INSUFFICIENT_FUNDS_ERROR_KEY = 'insufficientFunds' export const INSUFFICIENT_FUNDS_ERROR_KEY = 'insufficientFunds'
export const GAS_LIMIT_TOO_LOW_ERROR_KEY = 'gasLimitTooLow' export const GAS_LIMIT_TOO_LOW_ERROR_KEY = 'gasLimitTooLow'
export const TRANSACTION_ERROR = 'transactionError' export const TRANSACTION_ERROR_KEY = 'transactionError'

Loading…
Cancel
Save