Skip to content

Commit

Permalink
Resolve contract transaction failure due to low gas fees
Browse files Browse the repository at this point in the history
  • Loading branch information
Fenguoz committed Feb 14, 2023
1 parent 0780710 commit 71277a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BEP20.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function transfer(string $privateKey, string $to, float $value, string $g
'nonce' => "$nonce",
'from' => $from,
'to' => $this->contractAddress,
'gas' => '0x15F90',
'gas' => '0x3d090',
'gasPrice' => "$gasPrice",
'value' => Utils::NONE,
'chainId' => self::getChainId($this->proxyApi->getNetwork()),
Expand Down

0 comments on commit 71277a6

Please sign in to comment.