diff --git a/sui_core/src/consensus_adapter.rs b/sui_core/src/consensus_adapter.rs index e0701e6d76c6d..c2b98ed6101b6 100644 --- a/sui_core/src/consensus_adapter.rs +++ b/sui_core/src/consensus_adapter.rs @@ -123,7 +123,7 @@ impl ConsensusAdapter { .clone() .submit_transaction(TransactionProto { transaction: bytes }) .await - .map_err(|e| SuiError::ConsensusConnectionBroken(e.to_string()))?; + .map_err(|e| SuiError::ConsensusConnectionBroken(format!("{:?}", e)))?; } // Wait for the consensus to sequence the certificate and assign locks to shared objects.