From 88577544903cfa2a4c847193c1d490c088b73a11 Mon Sep 17 00:00:00 2001 From: Aditya Kulkarni Date: Fri, 19 Jul 2019 10:36:35 -0700 Subject: [PATCH] Don't segment t address --- src/sendtab.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/sendtab.cpp b/src/sendtab.cpp index 0180c53..eedfce0 100644 --- a/src/sendtab.cpp +++ b/src/sendtab.cpp @@ -559,6 +559,9 @@ bool MainWindow::confirmTx(Tx tx, RecurringPaymentInfo* rpi) { // Function to split the address to make it easier to read. // Split it into chunks of 4 chars. auto fnSplitAddressForWrap = [=] (const QString& a) -> QString { + if (Settings::isTAddress(a)) + return a; + QStringList ans; static int splitSize = 8;