From cb14d899327a557c8ab4d2a83c23cae929dbc730 Mon Sep 17 00:00:00 2001 From: Petar Radovic Date: Tue, 22 Apr 2025 18:56:18 +0200 Subject: [PATCH] still reverting --- sz-poc-offsite-2025/evm/processor/src/lib.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sz-poc-offsite-2025/evm/processor/src/lib.rs b/sz-poc-offsite-2025/evm/processor/src/lib.rs index 188a0e9..c14e7da 100644 --- a/sz-poc-offsite-2025/evm/processor/src/lib.rs +++ b/sz-poc-offsite-2025/evm/processor/src/lib.rs @@ -48,8 +48,7 @@ impl NomosDa { pub async fn disperse(&self, data: Vec, metadata: Metadata) -> Result<(), Error> { self.client - .publish_blob(self.url.clone(), data, metadata).await - - Ok(()) + .publish_blob(self.url.clone(), data, metadata) + .await } }