Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion servers/mu/src/domain/clients/gateway.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function isWalletWith ({
try {
logger({ log: `Step 4: Checking GraphQL for ${id}`, logId })
const process = await getProcess(id)
if (process) {
if (process && process?.id) {
logger({ log: `Found process in GraphQL for ${id}`, logId })
return setById(id, { isWallet: false }).then(() => false)
}
Expand Down
1 change: 0 additions & 1 deletion servers/mu/src/domain/clients/worker-fn.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ export function processResultWith ({
*/
export function enqueueResultsWith ({ enqueue }) {
return ({ msgs, spawns, assigns, initialTxId, parentId, processId, ...rest }) => {
console.dir({ m: 'ENQUEUING RESULTS' }, { depth: null })
const results = [
...msgs.map(msg => ({
type: 'MESSAGE',
Expand Down
Loading