Skip to content

Commit

Permalink
Update TransactionExecutor interface in createCallTxAndExecute
Browse files Browse the repository at this point in the history
  • Loading branch information
mkalinin committed Oct 11, 2017
1 parent e2b7631 commit bb19da3
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -597,9 +597,10 @@ protected TransactionReceipt createCallTxAndExecute(CallArguments args, Block bl
}

try {
TransactionExecutor executor = commonConfig.transactionExecutor
(tx, block.getCoinbase(), repository, blockStore,
programInvokeFactory, block, new EthereumListenerAdapter(), 0)
TransactionExecutor executor = new TransactionExecutor(
tx, block.getCoinbase(), repository, blockStore,
programInvokeFactory, block, new EthereumListenerAdapter(), 0)
.withCommonConfig(commonConfig)
.setLocalCall(true);

executor.init();
Expand Down

0 comments on commit bb19da3

Please sign in to comment.