Skip to content

Commit

Permalink
fix: convert bigInt to hex
Browse files Browse the repository at this point in the history
  • Loading branch information
Tuditi committed May 15, 2024
1 parent 0db50a9 commit 9551ce6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
gasPrices = { ...gasPrices, ..._gasPrices }
}
}
$: preparedTransaction.gasPrice = gasPrices[selectedGasSpeed]
$: preparedTransaction.gasPrice = Converter.bigIntToHex(gasPrices?.[selectedGasSpeed] ?? gasPrices.required)
setTokenTransfer()
function setTokenTransfer(): void {
Expand Down

0 comments on commit 9551ce6

Please sign in to comment.