Skip to content

Commit

Permalink
fix(mu): pass recipient process id correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
VinceJuliano committed Feb 7, 2025
1 parent 3208305 commit dba11cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion servers/mu/src/domain/lib/write-message-tx.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export function writeMessageTxWith (env) {
return Rejected(new Error('Must set Sender and Quantity to top up.', { cause: ctx }))
}

return topUp({ctx, relayUrl: RELAY_MAP[ctx.tx.processId].url, amount, recipient: sender})
return topUp({ctx, relayUrl: RELAY_MAP[ctx.tx.processId].url, amount, recipientProcessId: sender})
.bimap(
(e) => {
return new Error(e, { cause: { ...ctx, stage: 'write-message' } })
Expand Down

0 comments on commit dba11cf

Please sign in to comment.