use of org.hyperledger.besu.evm.operation.DelegateCallOperation in project besu by hyperledger.
the class MainnetEVMs method registerHomesteadOperations.
public static void registerHomesteadOperations(final OperationRegistry registry, final GasCalculator gasCalculator) {
registerFrontierOperations(registry, gasCalculator);
registry.put(new DelegateCallOperation(gasCalculator));
}
Aggregations