update web3 references

This commit is contained in:
Iuri Matias 2019-05-23 15:15:17 -04:00
parent ca599dd50f
commit 0a18d6e8a4
1 changed files with 3 additions and 3 deletions

View File

@ -114,8 +114,8 @@ class Actions {
async withdraw(params) {
let text = `await LiquidPledging.methods.withdraw(\"${params.id}\", web3.utils.toWei(\"${params.amount}\", "ether")).send({gas: 2000000})`;
return doAction(text, async () => {
const toSend = this.contracts.LiquidPledging.methods.withdraw(params.id.toString(), web3.utils.toWei(params.amount.toString(), "ether"));
const receipt = await TrxUtils.executeAndWait(toSend, web3.eth.defaultAccount);
const toSend = this.contracts.LiquidPledging.methods.withdraw(params.id.toString(), this.web3.utils.toWei(params.amount.toString(), "ether"));
const receipt = await TrxUtils.executeAndWait(toSend, this.web3.eth.defaultAccount);
console.dir("txHash: " + receipt.transactionHash);
const paymentId = receipt.events.AuthorizePayment.returnValues.idPayment;
console.log("Payment ID: " , paymentId);
@ -126,7 +126,7 @@ class Actions {
return new Promise(async (resolve, reject) => {
try {
const pledges = await PledgeUtils.getPledges(this.contracts.LiquidPledging);
PledgeUtils.printTable(pledges, web3);
PledgeUtils.printTable(pledges, this.web3);
} catch(error){
console.log(error);
console.log("Couldn't obtain the list of pledges: ", error.message);