diff --git a/src/currency_core/tx_pool.cpp b/src/currency_core/tx_pool.cpp index 0012f9df..5e655b59 100644 --- a/src/currency_core/tx_pool.cpp +++ b/src/currency_core/tx_pool.cpp @@ -512,7 +512,7 @@ namespace currency return true; // maximum age check - remove too old - uint64_t tx_age = get_core_time() - tx_entry.receive_time; + int64_t tx_age = get_core_time() - tx_entry.receive_time; if ((tx_age > CURRENCY_MEMPOOL_TX_LIVETIME )) {