From 936dbaea03e3847cdb13b46e95116e809188c7da Mon Sep 17 00:00:00 2001 From: Ade Lucas Date: Fri, 25 Oct 2024 10:50:30 -0400 Subject: [PATCH] Add @return tag to Javadoc in the method getPendingTransactions(). Signed-off-by: Ade Lucas --- .../services/transactionpool/TransactionPoolService.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/plugin-api/src/main/java/org/hyperledger/besu/plugin/services/transactionpool/TransactionPoolService.java b/plugin-api/src/main/java/org/hyperledger/besu/plugin/services/transactionpool/TransactionPoolService.java index 6143dcd9171..ba30fa80fff 100644 --- a/plugin-api/src/main/java/org/hyperledger/besu/plugin/services/transactionpool/TransactionPoolService.java +++ b/plugin-api/src/main/java/org/hyperledger/besu/plugin/services/transactionpool/TransactionPoolService.java @@ -27,6 +27,10 @@ public interface TransactionPoolService extends BesuService { /** Disables the transaction pool. */ void enableTransactionPool(); - /** Get the transaction pool content */ + /** + * Returns the collection of pending transactions. + * + * @return a collection of pending transactions + */ Collection getPendingTransactions(); }