Skip to content

Commit

Permalink
Removed console.loog
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdvibe committed Mar 26, 2021
1 parent 0fa4b88 commit 1741921
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions dist/lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,16 +94,16 @@ var MinaLedgerJS = /** @class */ (function () {
var tagHex = this.pad(txType.toString(16), 2);
var networkIdHex = this.pad(networkId, 2);
// Uncomment for debug
console.log("senderBip44AccountHex", senderBip44AccountHex);
console.log("senderAddressHex", senderAddressHex);
console.log("receiverHex", receiverHex);
console.log("amountHex", amountHex);
console.log("feeHex", feeHex);
console.log("nonceHex", nonceHex);
console.log("validUntilHex", validUntilHex);
console.log("memoHex", memoHex);
console.log("tagHex", tagHex);
console.log("networkIdHex", networkIdHex);
// console.log("senderBip44AccountHex", senderBip44AccountHex);
// console.log("senderAddressHex", senderAddressHex);
// console.log("receiverHex", receiverHex);
// console.log("amountHex", amountHex);
// console.log("feeHex", feeHex);
// console.log("nonceHex", nonceHex);
// console.log("validUntilHex", validUntilHex);
// console.log("memoHex", memoHex);
// console.log("tagHex", tagHex);
// console.log("networkIdHex", networkIdHex);
var apduMessage = senderBip44AccountHex +
senderAddressHex +
receiverHex +
Expand All @@ -115,8 +115,8 @@ var MinaLedgerJS = /** @class */ (function () {
tagHex +
networkIdHex;
// Uncomment for debug
console.log(apduMessage);
console.log('length: ', apduMessage.length);
// console.log(apduMessage);
// console.log('length: ', apduMessage.length);
return apduMessage;
};
/**
Expand Down

0 comments on commit 1741921

Please sign in to comment.