Skip to content

Commit

Permalink
fix(mu): mu overwriting message types #1025
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremiahstockdale committed Oct 15, 2024
1 parent ec01fed commit a6da18f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions servers/mu/src/domain/lib/build-tx.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,16 @@ export function buildTxWith (env) {
)
.map((res) => {
const tagsIn = [
{ name: 'Data-Protocol', value: 'ao' },
...ctx.cachedMsg.msg.Tags?.filter((tag) => {
return ![
'Data-Protocol',
'Type',
'Variant',
'From-Process',
'From-Module',
'Assignments'
].includes(tag.name)
}) ?? [],
{ name: 'Data-Protocol', value: 'ao' },
{ name: 'Type', value: 'Message' },
{ name: 'Variant', value: 'ao.TN.1' },
{ name: 'From-Process', value: ctx.cachedMsg.fromProcessId },
{
Expand Down

0 comments on commit a6da18f

Please sign in to comment.