diff --git a/base_layer/core/src/validation/transaction_validators.rs b/base_layer/core/src/validation/transaction_validators.rs index b6fd6c2d51..25e638b8ab 100644 --- a/base_layer/core/src/validation/transaction_validators.rs +++ b/base_layer/core/src/validation/transaction_validators.rs @@ -163,8 +163,9 @@ impl TxConsensusValidator { for kernel in tx.body.kernels() { if let Some((db_kernel, header_hash)) = self.db.fetch_kernel_by_excess_sig(kernel.excess_sig.to_owned())? { let msg = format!( - "Block contains kernel excess: {} which matches already existing excess signature in chain \ - database block hash: {}. Existing kernel excess: {}, excess sig nonce: {}, excess signature: {}", + "Aggregate body contains kernel excess: {} which matches already existing excess signature in \ + chain database block hash: {}. Existing kernel excess: {}, excess sig nonce: {}, excess \ + signature: {}", kernel.excess.to_hex(), header_hash.to_hex(), db_kernel.excess.to_hex(),