more merging fixes

This commit is contained in:
stubbsta 2026-05-22 14:22:09 +02:00
parent b3fe624b18
commit c52ccac37b
No known key found for this signature in database

View File

@ -149,12 +149,6 @@ proc checkInitialized(g: OnchainGroupManager): Result[void, string] =
return err("OnchainGroupManager is not initialized")
return ok()
template retryWrapper(
g: OnchainGroupManager, res: auto, errStr: string, body: untyped
): auto =
retryWrapper(res, RetryStrategy.new(), errStr, g.onFatalErrorAction):
body
# proc updateRoots*(g: OnchainGroupManager): Future[bool] {.async.} =
# let rootRes = await g.fetchMerkleRoot()
# if rootRes.isErr():