From 1d5f18a5500565bbfb75f66a1361dba9f3de4c01 Mon Sep 17 00:00:00 2001 From: Daniel Edgecumbe Date: Sun, 1 Oct 2017 07:44:38 +0100 Subject: [PATCH] [transaction] Improve message on 'no transaction loaded' --- transaction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transaction.py b/transaction.py index 14e62bb..57a3534 100644 --- a/transaction.py +++ b/transaction.py @@ -199,7 +199,7 @@ class TransactionView(view.View): CRED = curses.color_pair(3) CBOLD = curses.A_BOLD self._pad.addstr(0, 1, "no transaction loaded", CRED + CBOLD) - self._pad.addstr(1, 1, "enter block view and select a transaction", CRED) + self._pad.addstr(1, 1, "enter block or wallet view and select a transaction", CRED) self._pad.addstr(2, 1, "note that most transactions will be unavailable if -txindex is not enabled on your node", CRED) async def _draw(self):