Skip to content

Commit

Permalink
fix(typo): fix typo of bisiness
Browse files Browse the repository at this point in the history
Signed-off-by: jsjs026 <jasonhack518@gmail.com>
  • Loading branch information
jscode017 authored and petermetz committed Jul 3, 2021
1 parent c9e6deb commit 142cd56
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions packages/business-logic-plugin/BusinessLogicBase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,25 +23,25 @@ export class BusinessLogicBase implements BusinessLogicPlugin {
eventFilter: object | null = null;

startTransaction(req: Request, businessLogicID: string, tradeID: string): void {
// NOTE: This method implements the BisinessLogcPlugin operation(* Override by subclass)
// NOTE: This method implements the BusinessLogicPlugin operation(* Override by subclass)
}

executeNextTransaction(txInfo: object, txId: string): void {
// NOTE: This method implements the BisinessLogcPlugin operation(* Override by subclass)
// NOTE: This method implements the BusinessLogicPlugin operation(* Override by subclass)
}

getOperationStatus(tradeID: string): object {
// NOTE: This method implements the BisinessLogcPlugin operation(* Override by subclass)
// NOTE: This method implements the BusinessLogicPlugin operation(* Override by subclass)
return {};
}

setConfig(data: []): object {
// NOTE: This method implements the BisinessLogcPlugin operation(* Override by subclass)
// NOTE: This method implements the BusinessLogicPlugin operation(* Override by subclass)
return {};
}

onEvent(ledgerEvent: LedgerEvent, targetIndex: number): void {
// NOTE: This method implements the BisinessLogcPlugin operation(* Override by subclass)
// NOTE: This method implements the BusinessLogicPlugin operation(* Override by subclass)
}

getEventFilter(): object | null {
Expand All @@ -56,17 +56,17 @@ export class BusinessLogicBase implements BusinessLogicPlugin {
}

getEventDataNum(ledgerEvent: LedgerEvent): number {
// NOTE: This method implements the BisinessLogcPlugin operation(* Override by subclass)
// NOTE: This method implements the BusinessLogicPlugin operation(* Override by subclass)
return 0;
}

getTxIDFromEvent(ledgerEvent: LedgerEvent, targetIndex: number): string | null {
// NOTE: This method implements the BisinessLogcPlugin operation(* Override by subclass)
// NOTE: This method implements the BusinessLogicPlugin operation(* Override by subclass)
return null;
}

hasTxIDInTransactions(txID: string): boolean {
// NOTE: This method implements the BisinessLogcPlugin operation(* Override by subclass)
// NOTE: This method implements the BusinessLogicPlugin operation(* Override by subclass)
return false;
}
}

0 comments on commit 142cd56

Please sign in to comment.