소스 검색

choose network

serinko 4 년 전
부모
커밋
8071df419c
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  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():