Skip to content

Commit 198b2d8

Browse files
committed
refactor: Remove unnecessary parameters in nodesClaimsGet section of requestChainData
1 parent ab855c8 commit 198b2d8

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/nodes/NodeManager.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1257,13 +1257,7 @@ 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(
1261-
{
1262-
// seek:
1263-
// claimId != null
1264-
// ? claimsUtils.encodeClaimId(claimId)
1265-
// : ('' as ClaimIdEncoded),
1266-
},
1260+
for await (const agentClaim of await client.methods.nodesClaimsGet({},
12671261
ctx,
12681262
)) {
12691263
ctx.signal.throwIfAborted();

0 commit comments

Comments
 (0)