Skip to content

Commit c221485

Browse files
authored
Merge pull request #1264 from permaweb/jfrain99/fix-push-wallet
fix(mu): push msg to wallet
2 parents 9535a76 + 18ff1c2 commit c221485

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

servers/mu/src/domain/clients/gateway.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function isWalletWith ({
9999
try {
100100
logger({ log: `Step 4: Checking GraphQL for ${id}`, logId })
101101
const process = await getProcess(id)
102-
if (process) {
102+
if (process && process?.id) {
103103
logger({ log: `Found process in GraphQL for ${id}`, logId })
104104
return setById(id, { isWallet: false }).then(() => false)
105105
}

servers/mu/src/domain/clients/worker-fn.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ export function processResultWith ({
6161
*/
6262
export function enqueueResultsWith ({ enqueue }) {
6363
return ({ msgs, spawns, assigns, initialTxId, parentId, processId, ...rest }) => {
64-
console.dir({ m: 'ENQUEUING RESULTS' }, { depth: null })
6564
const results = [
6665
...msgs.map(msg => ({
6766
type: 'MESSAGE',

0 commit comments

Comments
 (0)