Browse Source

Merge pull request #481 from MortalKastor/fix-gas-limit

Fix unwritable gas limit field
master
Thibaut 7 years ago
committed by GitHub
parent
commit
dce9351fd2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/bridge/EthereumJSBridge.js

2
src/bridge/EthereumJSBridge.js

@ -37,7 +37,7 @@ const EditFees = ({ account, onChange, value }: EditProps<Transaction>) => (
const EditAdvancedOptions = ({ onChange, value }: EditProps<Transaction>) => (
<AdvancedOptions
gasLimit={value.gasLimit}
onChange={gasLimit => {
onChangeGasLimit={gasLimit => {
onChange({ ...value, gasLimit })
}}
/>

Loading…
Cancel
Save