Don't segment t address

This commit is contained in:
Aditya Kulkarni 2019-07-19 10:36:35 -07:00
parent e89e9d87e8
commit 8857754490
1 changed files with 3 additions and 0 deletions

View File

@ -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;