Browse Source

choose network

serinko 4 years ago
parent
commit
8071df419c
1 changed files with 3 additions and 2 deletions
  1. 3 2
      texts_cli.py

+ 3 - 2
texts_cli.py

@@ -56,11 +56,12 @@ def _ask_new_choice():
 
 def _choose_network():
     """Gives a choice of networks to work with"""
-    line_0 = ("\nPlease chose the network for the wallet address:",)
+    line_0 = ("**","Please chose the network for the wallet address:")
+    line = ("---", "---------------------------------",)
     line_1 = ("1 -","EVM; Etherum main net and any forks (BSC, Poly..)")
     line_2 = ("2 -","SPL; Solana Program Platform")
     line_3 = ("3 -","BTC; Bitcoin")
-    table = [ line_0, line_1, line_2, line_3]
+    table = [ line_0, line, line_1, line_2, line_3]
     return table
 
 def _prompt_address():