Skip to content

Commit

Permalink
Dc fee config show (#10586)
Browse files Browse the repository at this point in the history
  • Loading branch information
samsiegart authored Nov 27, 2024
2 parents decf06c + b448f1a commit 9c87ffd
Show file tree
Hide file tree
Showing 3 changed files with 1,967 additions and 116 deletions.
7 changes: 6 additions & 1 deletion packages/boot/test/bootstrapTests/orchestration.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import { test as anyTest } from '@agoric/zoe/tools/prepare-test-env-ava.js';

import { Fail } from '@endo/errors';
import { documentStorageSchema } from '@agoric/internal/src/storage-test-utils.js';
import {
defaultMarshaller,
documentStorageSchema,
} from '@agoric/internal/src/storage-test-utils.js';
import type { CosmosValidatorAddress } from '@agoric/orchestration';
import type { start as startStakeIca } from '@agoric/orchestration/src/examples/stake-ica.contract.js';
import type { Instance } from '@agoric/zoe/src/zoeService/utils.js';
Expand Down Expand Up @@ -52,6 +55,7 @@ test.serial('config', async t => {
await documentStorageSchema(t, storage, {
note: 'Chain info for Orchestration',
node: 'agoricNames.chain',
showValue: v => defaultMarshaller.fromCapData(JSON.parse(v)),
});
}

Expand All @@ -73,6 +77,7 @@ test.serial('config', async t => {
await documentStorageSchema(t, storage, {
note: 'Chain connections for Orchestration',
node: 'agoricNames.chainConnection',
showValue: v => defaultMarshaller.fromCapData(JSON.parse(v)),
});
}
{
Expand Down
Loading

0 comments on commit 9c87ffd

Please sign in to comment.