Skip to content

Commit

Permalink
Update contract-methods.js
Browse files Browse the repository at this point in the history
  • Loading branch information
soos3d authored Aug 16, 2023
1 parent 46ee0a3 commit bb4eea6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/contract-methods.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ const transferToEthWallet = async (provider, contract, amount, address) => {
from: BRIDGE_WALLET,
// destination of the transaction is the ERC20 token address
to: ORIGIN_TOKEN_CONTRACT_ADDRESS,
// data contains the amount an receiver params for transfer
// data contains the amount and receiver params for transfer
data,
// TO TEST!!!
gas: gas * 1.2,
gas: Math.ceil(gas * 1.2),
gasPrice,
nonce,
}
Expand Down

0 comments on commit bb4eea6

Please sign in to comment.