use of com.hedera.mirror.importer.parser.record.entity.EntityProperties in project hedera-mirror-node by hashgraph.
the class EthereumTransactionHandlerTest method getTransactionHandler.
@Override
protected TransactionHandler getTransactionHandler() {
doReturn(domainBuilder.ethereumTransaction(true).get()).when(ethereumTransactionParser).decode(any());
entityProperties = new EntityProperties();
return new EthereumTransactionHandler(entityProperties, entityListener, ethereumTransactionParser);
}
Aggregations