From 6b3a4efbc026527ad805a7de813c9aaaac41f66e Mon Sep 17 00:00:00 2001 From: Brian Johnson Date: Wed, 4 Apr 2018 14:16:57 -0500 Subject: [PATCH] Added printing out wallet password so can continue to use wallet when using --dont-kill. GH #2077 --- tests/nodeos_run_test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/nodeos_run_test.py b/tests/nodeos_run_test.py index 27f8572ce..5f850d1db 100755 --- a/tests/nodeos_run_test.py +++ b/tests/nodeos_run_test.py @@ -140,6 +140,8 @@ try: cmdError("eos wallet create") errorExit("Failed to create wallet %s." % (testWalletName)) + Print("Wallet \"%s\" password=%s." % (testWalletName, testWallet.password.encode("utf-8"))) + for account in accounts: Print("Importing keys for account %s into wallet %s." % (account.name, testWallet.name)) if not walletMgr.importKey(account, testWallet): -- GitLab