We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f815ad commit ece4913Copy full SHA for ece4913
1 file changed
src/tasks/cache/bundle.rs
@@ -107,15 +107,23 @@ impl BundlePoller {
107
let host_tx = match decode_tx(host_tx_bytes) {
108
Some(tx) => tx,
109
None => {
110
- span_debug!(span, idx, "Failed to decode host transaction, dropping bundle");
+ span_debug!(
111
+ span,
112
+ idx,
113
+ "Failed to decode host transaction, dropping bundle"
114
+ );
115
return;
116
}
117
};
118
119
let sender = match host_tx.recover_signer() {
120
Ok(s) => s,
121
Err(_) => {
- span_debug!(span, idx, "Failed to recover sender from host tx, dropping bundle");
122
123
124
125
+ "Failed to recover sender from host tx, dropping bundle"
126
127
128
129
0 commit comments