You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/node/da_clients/src/eigen/client.rs
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,10 @@ impl DataAvailabilityClient for EigenDAClient {
98
98
.await
99
99
.map_err(to_retriable_da_error)?;
100
100
ifletSome(eigenda_cert) = eigenda_cert {
101
-
let inclusion_data = eigenda_cert.to_bytes().map_err(|_| anyhow::anyhow!("Failed to convert eigenda cert to bytes")).map_err(to_non_retriable_da_error)?;
101
+
let inclusion_data = eigenda_cert
102
+
.to_bytes()
103
+
.map_err(|_| anyhow::anyhow!("Failed to convert eigenda cert to bytes"))
0 commit comments