We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1808448 commit 473b069Copy full SHA for 473b069
beacon_node/lighthouse_network/src/rpc/codec.rs
@@ -1308,7 +1308,10 @@ mod tests {
1308
assert_eq!(decoded, RequestType::ExecutionProofsByRoot(exec_proofs))
1309
}
1310
RequestType::ExecutionProofsByRange(exec_proofs_range) => {
1311
- assert_eq!(decoded, RequestType::ExecutionProofsByRange(exec_proofs_range))
+ assert_eq!(
1312
+ decoded,
1313
+ RequestType::ExecutionProofsByRange(exec_proofs_range)
1314
+ )
1315
1316
RequestType::Ping(ping) => {
1317
assert_eq!(decoded, RequestType::Ping(ping))
0 commit comments