mirror of
https://github.com/haveno-dex/haveno-ts.git
synced 2025-07-23 23:11:12 -04:00
disable rate limits for test clients
This commit is contained in:
parent
48e14877e3
commit
7aed6fa879
1 changed files with 2 additions and 1 deletions
|
@ -3689,7 +3689,8 @@ async function initHaveno(ctx?: HavenodContext): Promise<HavenoClient> {
|
|||
"--apiPort", TestConfig.ports.get(ctx.port)![0],
|
||||
"--walletRpcBindPort", ctx.walletUrl ? getPort(ctx.walletUrl) : "" + await getAvailablePort(), // use configured port if given
|
||||
"--passwordRequired", (ctx.accountPasswordRequired ? "true" : "false"),
|
||||
"--logLevel", ctx.logLevel!
|
||||
"--logLevel", ctx.logLevel!,
|
||||
"--disableRateLimits", "true"
|
||||
];
|
||||
havenod = await HavenoClient.startProcess(TestConfig.haveno.path, cmd, "http://127.0.0.1:" + ctx.port, ctx.logProcessOutput!);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue