Skip to content

Commit

Permalink
Nit fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lijunwangs committed Nov 7, 2023
1 parent 63ef2b2 commit 4ae21fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpc/src/transaction_status_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ pub(crate) mod tests {
};
assert!(test_notifier.notifications.contains_key(&key));

let result = &*test_notifier.notifications.get(&key).unwrap();
let result = test_notifier.notifications.get(&key).unwrap();
assert_eq!(
expected_transaction.signature(),
result.transaction.signature()
Expand Down

0 comments on commit 4ae21fc

Please sign in to comment.