Skip to content

Commit

Permalink
fix(VerifierFactory): fix some comments
Browse files Browse the repository at this point in the history
Signed-off-by: Takuma TAKEUCHI <[email protected]>
  • Loading branch information
takeutak committed Mar 18, 2021
1 parent d2825cc commit f38803d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions examples/run-transaction/BusinessLogicRunTransaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ export class BusinessLogicRunTransaction extends BusinessLogicBase {
// Create trade information
const tradeInfo: TradeInfo = new TradeInfo(requestInfo.businessLogicID, requestInfo.tradeID);

// TODO: Verifierを呼び出して、機能を実行する
this.execTransaction(requestInfo, tradeInfo);

}
Expand All @@ -65,7 +64,6 @@ export class BusinessLogicRunTransaction extends BusinessLogicBase {
logger.debug("called execTransaction()");

const useValidator = JSON.parse(transactionManagement.getValidatorToUse(tradeInfo.businessLogicID));
// TODO: 暫定的に監視不要を指定(※第3パラメタ=false)
const verifier = verifierFactory.getVerifier(useValidator['validatorID'][0], {}, false);
logger.debug("getVerifier");

Expand Down

0 comments on commit f38803d

Please sign in to comment.