update name to HavenoHeadlessAppMain

This commit is contained in:
woodser 2021-12-15 12:41:00 -05:00
parent 0d179da988
commit 1220a86202
2 changed files with 3 additions and 3 deletions

View File

@ -311,10 +311,10 @@ test("Handles unexpected errors during trade initialization", async () => {
try {
// start and fund 3 trader processes
let tradeAmount: bigint = BigInt("250000000000");
console.log("Starting trader processes");
traders = await startTraderProcesses(3, LOG_PROCESS_OUTPUT);
await traders[0].getBalances();
console.log("Funding traders");
let tradeAmount: bigint = BigInt("250000000000");
await waitForUnlockedBalance(tradeAmount * BigInt("2"), traders[0], traders[1], traders[2]);
// trader 0 posts offer

View File

@ -75,7 +75,7 @@ class HavenoDaemon {
output += line + '\n'; // capture output in case of error
// read success message
if (line.indexOf("BisqHeadlessAppMain: onSetupComplete") >= 0) { // TODO (woodser): rename class
if (line.indexOf("HavenoHeadlessAppMain: onSetupComplete") >= 0) {
// get api password
let passwordIdx = cmd.indexOf("--apiPassword");