@yerofey/cryptowallet-cli 1.23.0 → 1.23.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/Method.js +1 -1
- package/src/Wallet.js +2 -2
- package/src/chains/TON.json +1 -1
package/package.json
CHANGED
package/src/Method.js
CHANGED
package/src/Wallet.js
CHANGED
|
@@ -93,8 +93,8 @@ class Wallet {
|
|
|
93
93
|
(options.suffix && row.flags.includes('s'))
|
|
94
94
|
) {
|
|
95
95
|
if (badSymbolsArray.length === 0) {
|
|
96
|
-
// suggest to generate multiple wallets
|
|
97
|
-
if (!options.number || options.number == 1) {
|
|
96
|
+
// suggest to generate multiple wallets addresses (if it is supported by the settings)
|
|
97
|
+
if (row.flags.includes('n') && (!options.number || options.number == 1)) {
|
|
98
98
|
log(
|
|
99
99
|
yellow(
|
|
100
100
|
'💡 You can speed up the process significantly by generating multiple addresses for each wallet. Example: cw -n 10'
|