Skip to content

Commit 6ea4572

Browse files
Park Juhyungjoojis
authored andcommitted
Fix the wrong argument passing when calling PlatformAddress.fromPublic
It was hard to find because this function was called in the worker pool.
1 parent 15eb1ec commit 6ea4572

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/models/logic/utils/workerpool.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ const getSignersFromPubKeyAndRegularKeyOwner = (
3131
return regularKeyOwner;
3232
}
3333

34-
return PlatformAddress.fromPublic(signerPubKey, networkId);
34+
return PlatformAddress.fromPublic(signerPubKey, {
35+
networkId
36+
}).toString();
3537
});
3638
};
3739

0 commit comments

Comments
 (0)