mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
fix: use correct default for get_local_pending_transactions (#14253)
This commit is contained in:
@ -445,7 +445,7 @@ pub trait TransactionPool: Send + Sync + Clone {
|
|||||||
|
|
||||||
/// Returns all pending transactions that where submitted as [TransactionOrigin::Local]
|
/// Returns all pending transactions that where submitted as [TransactionOrigin::Local]
|
||||||
fn get_local_pending_transactions(&self) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>> {
|
fn get_local_pending_transactions(&self) -> Vec<Arc<ValidPoolTransaction<Self::Transaction>>> {
|
||||||
self.get_transactions_by_origin(TransactionOrigin::Local)
|
self.get_pending_transactions_by_origin(TransactionOrigin::Local)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns all pending transactions that where submitted as [TransactionOrigin::Private]
|
/// Returns all pending transactions that where submitted as [TransactionOrigin::Private]
|
||||||
|
|||||||
Reference in New Issue
Block a user