Skip to content

Commit

Permalink
Update CLI_Wallet.py
Browse files Browse the repository at this point in the history
  • Loading branch information
revoxhere authored Jul 1, 2021
1 parent 20ca4af commit b08500b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions CLI_Wallet.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
##########################################
# Duino-Coin CLI Wallet (v2.46)
# Duino-Coin CLI Wallet (v2.52)
# https://github.com/revoxhere/duino-coin
# Distributed under MIT license
# © Duino-Coin Community 2021
Expand Down Expand Up @@ -116,7 +116,7 @@
backend = default_backend()
iterations = 100_000
timeout = 30 # Socket timeout
VER = 2.46
VER = 2.52
RESOURCES_DIR = 'CLI_Wallet_' + str(VER) + '_resources'
use_wrapper = False
WS_URI = "wss://server.duinocoin.com:15808"
Expand Down Expand Up @@ -325,7 +325,7 @@ def reconnect():

password = getpass.getpass(prompt=Style.RESET_ALL
+ Fore.YELLOW
+ "Enter your password: "
+ "Enter your password (not shown for privacy): "
+ Style.BRIGHT,
stream=None)

Expand Down Expand Up @@ -382,13 +382,13 @@ def reconnect():

password = getpass.getpass(prompt=Style.RESET_ALL
+ Fore.YELLOW
+ "Enter your password: "
+ "Enter your password (not shown for privacy): "
+ Style.BRIGHT,
stream=None)

pconfirm = getpass.getpass(prompt=Style.RESET_ALL
+ Fore.YELLOW
+ "Confirm your password: "
+ "Confirm your password (not shown for privacy): "
+ Style.BRIGHT,
stream=None)

Expand Down

0 comments on commit b08500b

Please sign in to comment.