Skip to content

Commit 1f15052

Browse files
committed
DEBUG: less peers and chains, disable UI service
Signed-off-by: quacumque <quacumque@fastmail.jp>
1 parent bc9b8a9 commit 1f15052

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

generator/mod.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ const CONFIG_DIR = path.relative(Deno.cwd(), path.resolve(dirname, "../config"))
1717
const EXECUTOR = path.resolve(dirname, "executor.wasm");
1818

1919
const IROHA_IMAGE = `hyperledger/iroha:experimental-xx-8c67c3eb749af3b9c468d5b601d6fd40e1d8a453`;
20-
const CHAINS = ["aaa", "bbb", "ccc"];
21-
const PEERS_ON_CHAIN = 4;
20+
const CHAINS = ["aaa", "bbb", "ccc"].slice(0, 1);
21+
const PEERS_ON_CHAIN = 1;
2222
const ACCOUNTS_ON_CHAIN = 3;
2323
const ASSETS = [
2424
iroha.AssetDefinitionId.parse("rose#wonderland"),
@@ -428,7 +428,7 @@ const dockerCompose = {
428428
[TRIGGER_BUILDER_SERVICE_NAME]: triggerBuilderService(),
429429
...peerServices(),
430430
...relayServices(),
431-
ui: uiService(),
431+
// ui: uiService(),
432432
},
433433
};
434434

0 commit comments

Comments
 (0)