From e745bb95ed81dcbe985e3c185d01756cc1ff208f Mon Sep 17 00:00:00 2001
From: Moul <moul@moul.re>
Date: Sat, 13 Mar 2021 13:25:15 +0100
Subject: [PATCH] [enh] #172: Refactor tx confirmation

Use click.confirm()
---
 silkaj/tx.py | 30 ++++++++++++++----------------
 1 file changed, 14 insertions(+), 16 deletions(-)

diff --git a/silkaj/tx.py b/silkaj/tx.py
index 837468b8..f2ce0273 100644
--- a/silkaj/tx.py
+++ b/silkaj/tx.py
@@ -137,23 +137,21 @@ async def send_transaction(
         issuer_pubkey,
     )
 
-    if (
-        yes
-        or input(
-            tabulate(
-                await transaction_confirmation(
-                    issuer_pubkey,
-                    pubkey_amount[0],
-                    tx_amounts,
-                    recipients,
-                    outputbackchange,
-                    comment,
-                ),
-                tablefmt="fancy_grid",
-            )
-            + "\nDo you confirm sending this transaction? [yes/no]: "
+    if not yes:
+        confirmation_table = tabulate(
+            await transaction_confirmation(
+                issuer_pubkey,
+                pubkey_amount[0],
+                tx_amounts,
+                recipients,
+                outputbackchange,
+                comment,
+            ),
+            tablefmt="fancy_grid",
         )
-        == "yes"
+
+    if yes or click.confirm(
+        f"{confirmation_table}\nDo you confirm sending this transaction?"
     ):
         await handle_intermediaries_transactions(
             key,
-- 
GitLab