Skip to content

Commit

Permalink
Make debugging easier
Browse files Browse the repository at this point in the history
  • Loading branch information
Quantumplation committed Dec 3, 2024
1 parent 2ec2563 commit 7cf67ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion referee/referee.ts
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ while (true) {
if (counter % 10000 === 0) {
console.log("10k transactions...");
}
await new Promise((resolve) => setTimeout(resolve, 1));
await new Promise((resolve) => setTimeout(resolve, 1000));
}

// while (!done) {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/HydraMultiplayer/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class HydraMultiplayerServer extends HydraMultiplayer {
// If we want to ensure we don't spend the initial state utxo,
// we need to add something identifying for the "admin UTxO" (perhaps a datum)
this.latestUTxO = utxos[0]!;
console.log("UTxO Selected");
console.log("UTxO Selected", this.latestUTxO);
}
protected override buildTx(datum: string): [UTxO, string] {
if (!this.latestUTxO) {
Expand Down

0 comments on commit 7cf67ff

Please sign in to comment.