From d484ae8395cb20dcfeaee3b8b513b760b68f68d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Tr=C4=85d?= Date: Thu, 24 Oct 2024 12:36:16 +0200 Subject: [PATCH] Fix (#803) --- src/identity/processor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/identity/processor.rs b/src/identity/processor.rs index 4beb63a2..a2f246bf 100644 --- a/src/identity/processor.rs +++ b/src/identity/processor.rs @@ -453,7 +453,7 @@ impl OnChainIdentityProcessor { .database .begin_tx(IsolationLevel::ReadCommitted) .await?; - tx.mark_root_as_processed(&root.into()).await?; + tx.mark_root_as_mined(&root.into()).await?; tx.commit().await?; info!(?root, "Root finalized");