Skip to content

Commit

Permalink
fix: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Maddiaa0 committed Jan 11, 2024
1 parent cace012 commit 22449bc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion yarn-project/acir-simulator/src/avm/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "./avm_executor.js";
export * from './avm_executor.js';
8 changes: 4 additions & 4 deletions yarn-project/acir-simulator/src/avm/journal/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Error thrown when a base journal is attempted to be merged.
*/
export class RootJournalCannotBeMerged extends Error {
constructor() {
super("Base journal cannot be merged");
}
}
constructor() {
super('Base journal cannot be merged');
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { CommitmentsDB, PublicContractsDB, PublicStateDB } from '../../index.js'

/**
* Host storage
*
*
* A wrapper around the node dbs
*/
export class HostStorage {
Expand Down

0 comments on commit 22449bc

Please sign in to comment.