hodl-wallet 1.2.8 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.mjs +3 -4
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -270,7 +270,6 @@ class Wallet {
|
|
|
270
270
|
}
|
|
271
271
|
|
|
272
272
|
console.log(table.toString());
|
|
273
|
-
console.log('');
|
|
274
273
|
}
|
|
275
274
|
|
|
276
275
|
async transferFunds() {
|
|
@@ -418,7 +417,7 @@ class Wallet {
|
|
|
418
417
|
});
|
|
419
418
|
|
|
420
419
|
table.push([name, address]);
|
|
421
|
-
console.log(
|
|
420
|
+
console.log(table.toString());
|
|
422
421
|
}
|
|
423
422
|
}
|
|
424
423
|
|
|
@@ -521,7 +520,7 @@ class Wallet {
|
|
|
521
520
|
]);
|
|
522
521
|
table.push([{ colSpan: 4, content: this.selectedNetwork.explorer + hash }]);
|
|
523
522
|
|
|
524
|
-
console.log(
|
|
523
|
+
console.log(table.toString());
|
|
525
524
|
}
|
|
526
525
|
|
|
527
526
|
clearAccountData() {
|
|
@@ -552,7 +551,7 @@ class Wallet {
|
|
|
552
551
|
table.push(['WARNING', "Please keep your private-key secure. Never share it."]);
|
|
553
552
|
}
|
|
554
553
|
|
|
555
|
-
console.log(
|
|
554
|
+
console.log(table.toString());
|
|
556
555
|
}
|
|
557
556
|
|
|
558
557
|
async switchNetwork() {
|