diff --git a/applications/tari_base_node/windows/README.md b/applications/tari_base_node/windows/README.md index 550fbf5c00..ee786e591f 100644 --- a/applications/tari_base_node/windows/README.md +++ b/applications/tari_base_node/windows/README.md @@ -14,7 +14,7 @@ installed automatically if selected: Notes: - Minimum Windows 7 64bit with Windows Powershell 3.0 required, Windows 10 64bit recommended. -- Minimum 60GB free disk space required at the initial runtime. +- Minimum 1.2 GB free disk space required at the initial runtime. ## Runtime diff --git a/base_layer/core/src/mempool/service/inbound_handlers.rs b/base_layer/core/src/mempool/service/inbound_handlers.rs index 8678821291..f2f8661c6d 100644 --- a/base_layer/core/src/mempool/service/inbound_handlers.rs +++ b/base_layer/core/src/mempool/service/inbound_handlers.rs @@ -135,7 +135,20 @@ where T: BlockchainBackend + 'static ); let propagate = match tx_storage { TxStorageResponse::UnconfirmedPool => true, - TxStorageResponse::OrphanPool => false, + TxStorageResponse::OrphanPool => { + trace!( + target: LOG_TARGET, + "Transaction `{}` received from nodeID `{}` is bad: double spend or non-existent \ + input.", + tx.body.kernels()[0].excess_sig.get_signature().to_hex(), + exclude_peers + .first() + .as_ref() + .map(|p| format!("{}", p)) + .unwrap_or_else(|| "local services".to_string()) + ); + false + }, TxStorageResponse::PendingPool => true, TxStorageResponse::ReorgPool => false, TxStorageResponse::NotStored => false,