Skip to content

Commit

Permalink
fix(cosmic-swingset): installation publisher uses remotable storage m…
Browse files Browse the repository at this point in the history
…essenger
  • Loading branch information
mhofman committed Oct 5, 2024
1 parent d4afab8 commit 4f07d1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/cosmic-swingset/src/chain-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { resolve as importMetaResolve } from 'import-meta-resolve';
import tmp from 'tmp';

import { Fail, q } from '@endo/errors';
import { E } from '@endo/far';
import { E, Far } from '@endo/far';
import { makeMarshal } from '@endo/marshal';
import { isNat } from '@endo/nat';
import { M, mustMatch } from '@endo/patterns';
Expand Down Expand Up @@ -432,9 +432,9 @@ export default async function main(progname, args, { env, homedir, agcc }) {
}
}

const toStorage = message => {
const toStorage = Far('BridgeStorageHandler', message => {
return doOutboundBridge(BridgeId.STORAGE, message);
};
});

const makeInstallationPublisher = () => {
const installationStorageNode = makeChainStorageRoot(
Expand Down

0 comments on commit 4f07d1c

Please sign in to comment.