Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
panleone committed Sep 21, 2023
1 parent 3a470ab commit 6818643
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions scripts/charting.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ async function getWalletDataset() {

// Public (Available)
const spendable_bal = mempool.balance;
console.log('BAL:', spendable_bal);
if (spendable_bal > 0) {
arrBreakdown.push({
type: translation.chartPublicAvailable,
Expand All @@ -57,7 +56,6 @@ async function getWalletDataset() {

// Staking (Locked)
const spendable_cold_bal = mempool.coldBalance;
console.log('CBAL:', spendable_cold_bal);
if (spendable_cold_bal > 0) {
arrBreakdown.push({
type: 'Staking',
Expand Down
1 change: 0 additions & 1 deletion scripts/wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,6 @@ class Wallet {
this.#ownAddresses.set(address, value);
return value;
}
console.log('we failed Last is:', last);
this.#ownAddresses.set(address, null);
return null;
}
Expand Down

0 comments on commit 6818643

Please sign in to comment.