Skip to content

Commit

Permalink
fix: avoid marshaller error in watchWallet (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
samsiegart authored Mar 6, 2024
1 parent a01a6e0 commit b6218dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export const watchWallet = (
const leader = makeLeader(rpc);
const follower = makeFollower(`:published.wallet.${address}`, leader, {
proof: 'none',
unserializer: Far('marshaller', chainStorageWatcher.marshaller),
unserializer: Far('marshaller', { ...chainStorageWatcher.marshaller }),
});

for await (const update of iterateEach(follower)) {
Expand Down

0 comments on commit b6218dd

Please sign in to comment.