mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
simplewallet: use is_transfer_unlocked instead of is_tx_spendtime_unlocked for show_transfers
Followup on #4728
This commit is contained in:
parent
58ce16d4d9
commit
0e2a5d75de
1 changed files with 1 additions and 1 deletions
|
@ -6844,7 +6844,7 @@ bool simple_wallet::get_transfers(std::vector<std::string>& local_args, std::vec
|
||||||
std::string note = m_wallet->get_tx_note(pd.m_tx_hash);
|
std::string note = m_wallet->get_tx_note(pd.m_tx_hash);
|
||||||
std::string destination = m_wallet->get_subaddress_as_str({m_current_subaddress_account, pd.m_subaddr_index.minor});
|
std::string destination = m_wallet->get_subaddress_as_str({m_current_subaddress_account, pd.m_subaddr_index.minor});
|
||||||
const std::string type = pd.m_coinbase ? tr("block") : tr("in");
|
const std::string type = pd.m_coinbase ? tr("block") : tr("in");
|
||||||
const bool unlocked = m_wallet->is_tx_spendtime_unlocked(pd.m_unlock_time, pd.m_block_height);
|
const bool unlocked = m_wallet->is_transfer_unlocked(pd.m_unlock_time, pd.m_block_height);
|
||||||
transfers.push_back({
|
transfers.push_back({
|
||||||
pd.m_block_height,
|
pd.m_block_height,
|
||||||
pd.m_timestamp,
|
pd.m_timestamp,
|
||||||
|
|
Loading…
Reference in a new issue