Skip to content

Commit ece4913

Browse files
committed
style: run cargo fmt
1 parent 5f815ad commit ece4913

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

src/tasks/cache/bundle.rs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,15 +107,23 @@ impl BundlePoller {
107107
let host_tx = match decode_tx(host_tx_bytes) {
108108
Some(tx) => tx,
109109
None => {
110-
span_debug!(span, idx, "Failed to decode host transaction, dropping bundle");
110+
span_debug!(
111+
span,
112+
idx,
113+
"Failed to decode host transaction, dropping bundle"
114+
);
111115
return;
112116
}
113117
};
114118

115119
let sender = match host_tx.recover_signer() {
116120
Ok(s) => s,
117121
Err(_) => {
118-
span_debug!(span, idx, "Failed to recover sender from host tx, dropping bundle");
122+
span_debug!(
123+
span,
124+
idx,
125+
"Failed to recover sender from host tx, dropping bundle"
126+
);
119127
return;
120128
}
121129
};

0 commit comments

Comments
 (0)