@yerofey/cryptowallet-cli 1.31.1 → 1.31.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/package.json +1 -1
- package/src/Wallet.js +4 -4
package/package.json
CHANGED
package/src/Wallet.js
CHANGED
|
@@ -514,13 +514,13 @@ class Wallet {
|
|
|
514
514
|
});
|
|
515
515
|
const v5Address = walletV5.address;
|
|
516
516
|
const nonBounceableV5Address = v5Address.toString({
|
|
517
|
-
bounceable: false,
|
|
518
|
-
urlSafe: true,
|
|
517
|
+
bounceable: false, // (UQ)
|
|
518
|
+
urlSafe: true,
|
|
519
519
|
testOnly: false,
|
|
520
520
|
});
|
|
521
521
|
const bouncableAddressV5 = v5Address.toString({
|
|
522
|
-
bounceable: true,
|
|
523
|
-
urlSafe:
|
|
522
|
+
bounceable: true, // (EQ)
|
|
523
|
+
urlSafe: true,
|
|
524
524
|
testOnly: false,
|
|
525
525
|
});
|
|
526
526
|
|