You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
set a random seed for deterministically reproducing a previous test run
46
48
--timeout-factor TIMEOUT_FACTOR
47
49
adjust test timeouts by a factor. Setting it to 0 disables all timeouts
48
-
--scenario SCENARIO
49
-
--label LABEL
50
-
--payments PAYMENTS
51
-
--feerates FEERATES
52
-
--ops OPS
50
+
--scenario SCENARIO Path to scenario file consisting of lines of comma separated pairs of payments and feerates
51
+
--label LABEL A label to give to this simulation to help identify its results
52
+
--payments PAYMENTS Path to payments file consisting of one payment per line in BTC. Positive is a deposit into the test wallet, negative is a withdrawal from the test wallet.
53
+
--feerates FEERATES Path to a feerates file consisting of one feerate per line in BTC/kvb
54
+
--ops OPS Maximum number of deposits and withdrawal actions to do, default is all payments in the scenario or payments file
53
55
--weights WEIGHTS [WEIGHTS ...]
54
56
Causes recipient output types to be chosen randomly with provided weights per address type. Weights must add to 100 and be provided in the following order: bech32m bech32 p2sh-segwit legacy
parser.add_argument("--scenario", default=None, action=ScenarioOptionsAction, help="Path to scenario file consisting of lines of comma separated pairs of payments and feerates")
154
+
parser.add_argument("--label", default=None, help="A label to give to this simulation to help identify its results")
154
155
parser.add_argument(
155
156
"--payments",
156
157
default=None,
157
158
required="--feerates"insys.argv,
158
159
action=PaymentsFeeratesOptionsAction,
160
+
help="Path to payments file consisting of one payment per line in BTC. Positive is a deposit into the test wallet, negative is a withdrawal from the test wallet."
159
161
)
160
162
parser.add_argument(
161
163
"--feerates",
162
164
default=None,
163
165
required="--payments"insys.argv,
164
166
action=PaymentsFeeratesOptionsAction,
167
+
help="Path to a feerates file consisting of one feerate per line in BTC/kvb"
parser.add_argument("--ops", type=int, default=None, help="Maximum number of deposits and withdrawal actions to do, default is all payments in the scenario or payments file")
0 commit comments