chore: making syncTree public (#23)

This commit is contained in:
gabrielmer 2024-11-13 12:43:45 +07:00 committed by GitHub
parent 38f853df30
commit c3d37c2860
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ proc resolveRoot*(resolver: Resolver, loc: LinkEntry): Future[ResolveResult[Root
return ok(res[])
proc syncTree(resolver: Resolver, rootLocation: LinkEntry): Future[Result[Tree, cstring]] {.async.} =
proc syncTree*(resolver: Resolver, rootLocation: LinkEntry): Future[Result[Tree, cstring]] {.async.} =
## Synchronises the client tree according to EIP-1459
let rootEntry = await resolveRoot(resolver, rootLocation)