Merge pull request #1093 from siiky/fix/lam-332/ethereum-send

fix: Ethereum sends
This commit is contained in:
Rafael Taranto 2022-02-10 13:09:06 +00:00 committed by GitHub
commit 4015e23d34

View file

@ -103,7 +103,7 @@ function generateTx (_toAddress, wallet, amount, includesFee, cryptoCode) {
const txTemplate = { const txTemplate = {
from: fromAddress, from: fromAddress,
to: toAddress, to: toAddress,
value: amount value: amount.toString()
} }
const promises = [ const promises = [