Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
Tschakki committed Dec 4, 2023
1 parent 9a32aff commit 084a2f1
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,31 +112,31 @@ export class HelloModule extends Modules.Interoperability.BaseInteroperableModul
return result;
}

// eslint-disable-next-line @typescript-eslint/no-empty-function
public async beforeCommandExecute(
_context: StateMachine.TransactionExecuteContext,
// eslint-disable-next-line @typescript-eslint/no-empty-function
): Promise<void> {}

// eslint-disable-next-line @typescript-eslint/no-empty-function
public async afterCommandExecute(
_context: StateMachine.TransactionExecuteContext,
// eslint-disable-next-line @typescript-eslint/no-empty-function
): Promise<void> {}

// eslint-disable-next-line @typescript-eslint/no-empty-function
public async initGenesisState(_context: StateMachine.GenesisBlockExecuteContext): Promise<void> {}

// eslint-disable-next-line @typescript-eslint/no-empty-function
public async finalizeGenesisState(
_context: StateMachine.GenesisBlockExecuteContext,
// eslint-disable-next-line @typescript-eslint/no-empty-function
): Promise<void> {}

// eslint-disable-next-line @typescript-eslint/no-empty-function
public async beforeTransactionsExecute(
_context: StateMachine.BlockExecuteContext,
// eslint-disable-next-line @typescript-eslint/no-empty-function
): Promise<void> {}

// eslint-disable-next-line @typescript-eslint/no-empty-function
public async afterTransactionsExecute(
_context: StateMachine.BlockAfterExecuteContext,
// eslint-disable-next-line @typescript-eslint/no-empty-function
): Promise<void> {}
}

0 comments on commit 084a2f1

Please sign in to comment.