Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
Fmt code
Browse files Browse the repository at this point in the history
  • Loading branch information
lijunwangs committed Nov 21, 2021
1 parent 862e2f9 commit 4b354e9
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions rpc/src/transaction_status_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,15 +166,12 @@ impl TransactionStatusService {
};

if let Some(transaction_notifier) = transaction_notifier.as_ref() {
transaction_notifier
.write()
.unwrap()
.notify_transaction(
slot,
transaction.signature(),
&transaction_status_meta,
&transaction,
);
transaction_notifier.write().unwrap().notify_transaction(
slot,
transaction.signature(),
&transaction_status_meta,
&transaction,
);
}
if enable_rpc_transaction_history {
if let Some(memos) = extract_and_fmt_memos(transaction.message()) {
Expand Down

0 comments on commit 4b354e9

Please sign in to comment.