Skip to content

Commit

Permalink
Version 0.51.
Browse files Browse the repository at this point in the history
Gas priority fee set to 2.

Signed-off-by: antonnell <[email protected]>
  • Loading branch information
antonnell committed Sep 27, 2021
1 parent 9de08f8 commit 54ce428
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/navigation/navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ function Navigation(props) {
<img src='/images/icon-warning.svg' className={ classes.warningIcon } onClick={ openWarning }/>
</Tooltip>
</div>
<Typography className={classes.smallVersion}>Version 0.5.0-beta</Typography>
<Typography className={classes.smallVersion}>Version 0.5.1-beta</Typography>
{ warningOpen &&
<FFWarning close={ closeWarning } />
}
Expand Down
5 changes: 4 additions & 1 deletion stores/fixedForexStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -2752,7 +2752,10 @@ class Store {
contract.methods[method](...params)
.send({
from: account.address,
gasPrice: web3.utils.toWei(gasPrice, 'gwei'),
// gasPrice: web3.utils.toWei(gasPrice, 'gwei'),
gas: gasAmount,
maxFeePerGas: web3.utils.toWei(gasPrice, 'gwei'),
maxPriorityFeePerGas: web3.utils.toWei('2', 'gwei')
})
.on('transactionHash', function (hash) {
context.emitter.emit(TX_SUBMITTED, hash);
Expand Down

0 comments on commit 54ce428

Please sign in to comment.