use of org.ethereum.core.TransactionPoolAddResult in project rskj by rsksmart.
the class TransactionGatewayTest method receiveTransaction_newTransaction_shouldAddAndBroadcast.
@Test
public void receiveTransaction_newTransaction_shouldAddAndBroadcast() {
TransactionPoolAddResult transactionPoolAddResult = TransactionPoolAddResult.okPendingTransactions(Collections.singletonList(tx));
receiveTransactionAndVerifyCalls(transactionPoolAddResult, 1);
}
Aggregations