Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
ThetaSinner committed Aug 13, 2024
1 parent 5848ebe commit 9fd4f50
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ts/src/trycp/conductor/scenario.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export class TryCpScenario {
// create conductors for each client
for (let i = 0; i < numberOfConductorsPerClient; i++) {
const conductorCreated = client
.addConductor({partialConfig: options?.partialConfig})
.addConductor({ partialConfig: options?.partialConfig })
.then(async (conductor) => {
const app = options.app;
let appOptions;
Expand Down
4 changes: 3 additions & 1 deletion ts/src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ export const areConductorCellsDhtsSynced = async (
(op) => {
if ("ChainOp" in op) {
// Secondly sort by chain op signature.
return Buffer.from(Object.values(op.ChainOp)[0][0]).toString('base64');
return Buffer.from(Object.values(op.ChainOp)[0][0]).toString(
"base64"
);
} else {
// Sorting by signatures is sufficient for warrant ops.
}
Expand Down

0 comments on commit 9fd4f50

Please sign in to comment.