Skip to content

Commit 1597bad

Browse files
committed
feat: reintroduced nodesClaimsGet parameters for requestChainData because we still need it (will reintroduce Discovery test failure)
1 parent 198b2d8 commit 1597bad

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/nodes/NodeManager.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1257,7 +1257,13 @@ class NodeManager {
12571257
return await this.withConnF(targetNodeId, ctx, async (connection) => {
12581258
const claims: Record<ClaimId, SignedClaim> = {};
12591259
const client = connection.getClient();
1260-
for await (const agentClaim of await client.methods.nodesClaimsGet({},
1260+
for await (const agentClaim of await client.methods.nodesClaimsGet(
1261+
{
1262+
seek:
1263+
claimId != null
1264+
? claimsUtils.encodeClaimId(claimId)
1265+
: ('' as ClaimIdEncoded),
1266+
},
12611267
ctx,
12621268
)) {
12631269
ctx.signal.throwIfAborted();

0 commit comments

Comments
 (0)