50 lines
1.1 KiB
TOML
50 lines
1.1 KiB
TOML
[metadata]
|
|
name = "lotus-soup"
|
|
author = "raulk"
|
|
|
|
[global]
|
|
plan = "lotus-soup"
|
|
case = "paych-stress"
|
|
total_instances = 5 # 2 clients + 2 miners + 1 bootstrapper
|
|
builder = "exec:go"
|
|
runner = "local:exec"
|
|
|
|
[global.build]
|
|
selectors = ["testground"]
|
|
|
|
[global.run_config]
|
|
exposed_ports = { pprof = "6060", node_rpc = "1234", miner_rpc = "2345" }
|
|
|
|
[global.build_config]
|
|
enable_go_build_cache = true
|
|
|
|
[global.run.test_params]
|
|
clients = "2"
|
|
miners = "2"
|
|
genesis_timestamp_offset = "0"
|
|
balance = "30" ## be careful, this is in FIL.
|
|
sectors = "10"
|
|
random_beacon_type = "mock"
|
|
mining_mode = "natural"
|
|
lane_count = "8"
|
|
increments = "30" ## in FIL
|
|
|
|
[[groups]]
|
|
id = "bootstrapper"
|
|
instances = { count = 1 }
|
|
[groups.run.test_params]
|
|
role = "bootstrapper"
|
|
|
|
[[groups]]
|
|
id = "miners"
|
|
instances = { count = 2 }
|
|
[groups.run.test_params]
|
|
role = "miner"
|
|
|
|
[[groups]]
|
|
id = "clients"
|
|
# the first client will be on the receiving end; all others will be on the sending end.
|
|
instances = { count = 2 }
|
|
[groups.run.test_params]
|
|
role = "client"
|