Remove stdout logs for JSON resp

This commit is contained in:
Oskar Thoren 2021-02-09 12:12:29 +08:00
parent 5ca72cb10a
commit dfbd26d195
2 changed files with 1 additions and 2 deletions

View File

@ -32,7 +32,6 @@ task("setupSwap", "Setup Swap")
task("signCheque", "Sign cheque")
.addParam("swapaddress", "Address to Swap Contract (Assumed to belong to Alice)")
.setAction(async taskArgs => {
// TODO Argument, aliceSwapAddress
var resp = await swap.signCheque(taskArgs.swapaddress);
console.log(JSON.stringify(resp));
});

View File

@ -109,7 +109,7 @@ async function signCheque(swapAddress) {
cumulativePayout: cumulativePayout
};
console.log("Cheque", cheque);
//console.log("Cheque", cheque);
const types = {
Cheque: ChequeType