mirror of
https://github.com/tornadocash/tornado-cli.git
synced 2024-11-21 17:27:07 +01:00
Fix token deposit & Fix EIP-1559 for goerli network
This commit is contained in:
parent
5064b379f5
commit
9ec34aa423
6
cli.js
6
cli.js
@ -94,7 +94,7 @@ async function generateTransaction(to, encodedData, value = 0) {
|
|||||||
|
|
||||||
async function txoptions() {
|
async function txoptions() {
|
||||||
// Generate EIP-1559 transaction
|
// Generate EIP-1559 transaction
|
||||||
if (netId == 1 || netId == 5) {
|
if (netId == 1) {
|
||||||
tx = {
|
tx = {
|
||||||
to : to,
|
to : to,
|
||||||
value : value,
|
value : value,
|
||||||
@ -104,7 +104,7 @@ async function generateTransaction(to, encodedData, value = 0) {
|
|||||||
gas : gasLimit,
|
gas : gasLimit,
|
||||||
data : encodedData
|
data : encodedData
|
||||||
}
|
}
|
||||||
} else if (netId == 137 || netId == 43114) {
|
} else if (netId == 5 || netId == 137 || netId == 43114) {
|
||||||
tx = {
|
tx = {
|
||||||
to : to,
|
to : to,
|
||||||
value : value,
|
value : value,
|
||||||
@ -207,7 +207,7 @@ async function deposit({ currency, amount }) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
console.log('Submitting deposit transaction')
|
console.log('Submitting deposit transaction')
|
||||||
await generateTransaction(contractAddress, tornado.methods.deposit(toHex(deposit.commitment)).encodeABI())
|
await generateTransaction(contractAddress, tornado.methods.deposit(tornadoInstance, toHex(deposit.commitment), []).encodeABI())
|
||||||
await printERC20Balance({ address: tornadoContract._address, name: 'Tornado contract' })
|
await printERC20Balance({ address: tornadoContract._address, name: 'Tornado contract' })
|
||||||
await printERC20Balance({ address: senderAccount, name: 'Sender account' })
|
await printERC20Balance({ address: senderAccount, name: 'Sender account' })
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user