Skip to content

Commit

Permalink
Print tx data in the log (MystenLabs#4056)
Browse files Browse the repository at this point in the history
  • Loading branch information
lxfind authored Aug 18, 2022
1 parent 24b92aa commit 31805ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sui-core/src/authority.rs
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ impl AuthorityState {
transaction: Transaction,
) -> Result<TransactionInfoResponse, SuiError> {
let transaction_digest = *transaction.digest();
debug!(tx_digest=?transaction_digest, "handle_transaction. Tx data kind: {:?}", transaction.signed_data.data.kind);
debug!(tx_digest=?transaction_digest, "handle_transaction. Tx data: {:?}", transaction.signed_data.data);
self.metrics.tx_orders.inc();
// Check the sender's signature.
transaction.verify().map_err(|e| {
Expand Down

0 comments on commit 31805ba

Please sign in to comment.