diff options
author | Riccardo Spagni <ric@spagni.net> | 2019-01-28 21:33:33 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2019-01-28 21:33:33 +0200 |
commit | c07c907114232eb9db8821c10d4bea3069a91697 (patch) | |
tree | 3020b6390286c568db4f7e0e95fc9f002f75b429 /src | |
parent | Merge pull request #5073 (diff) | |
parent | wallet api: don't truncate address in subaddress_account (diff) | |
download | monero-c07c907114232eb9db8821c10d4bea3069a91697.tar.xz |
Merge pull request #5074
b8c5f550 wallet api: don't truncate address in subaddress_account (selsta)
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/api/subaddress_account.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/api/subaddress_account.cpp b/src/wallet/api/subaddress_account.cpp index 19ed8fb38..4765465c3 100644 --- a/src/wallet/api/subaddress_account.cpp +++ b/src/wallet/api/subaddress_account.cpp @@ -62,7 +62,7 @@ void SubaddressAccountImpl::refresh() { m_rows.push_back(new SubaddressAccountRow( i, - m_wallet->m_wallet->get_subaddress_as_str({i,0}).substr(0,6), + m_wallet->m_wallet->get_subaddress_as_str({i,0}), m_wallet->m_wallet->get_subaddress_label({i,0}), cryptonote::print_money(m_wallet->m_wallet->balance(i)), cryptonote::print_money(m_wallet->m_wallet->unlocked_balance(i)) |