Skip to content

Commit

Permalink
style: resolve style guide violations
Browse files Browse the repository at this point in the history
  • Loading branch information
oXtxNt9U authored and github-actions[bot] committed Dec 5, 2024
1 parent 0050086 commit e1494f1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ export const makeApplication = async (configurationPath: string, options: Record
app.bind(Identifiers.Application.Name).toConstantValue(options.name);
app.bind(Identifiers.Services.EventDispatcher.Service).toConstantValue({});
app.bind(Identifiers.Services.Log.Service).toConstantValue({
info: (msg: string) => console.log(msg),
warning: (msg: string) => console.log(msg),
debug: (msg: string) => console.log(msg),
debug: (message: string) => console.log(message),
info: (message: string) => console.log(message),
warning: (message: string) => console.log(message),
});
// Used for evm instance
const fsExtra = await import("fs-extra/esm");
Expand Down
2 changes: 1 addition & 1 deletion packages/crypto-block/source/verifier.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { inject, injectable } from "@mainsail/container";
import { Utils as AppUtils } from "@mainsail/kernel";
import { Contracts, Identifiers, Utils } from "@mainsail/contracts";
import { Utils as AppUtils } from "@mainsail/kernel";
import { BigNumber } from "@mainsail/utils";

@injectable()
Expand Down
2 changes: 1 addition & 1 deletion packages/snapshot-legacy-importer/source/importer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ export class Importer implements Contracts.Snapshot.LegacyImporter {

this.logger.info(
`snapshot stats: ${JSON.stringify({
wallets: wallets.length,
validators: validators.length,
voters: voters.length,
wallets: wallets.length,
})}`,
);

Expand Down

0 comments on commit e1494f1

Please sign in to comment.