Expose UnorderedIterator. (#9347)

This commit is contained in:
Tomasz Drwięga 2018-08-14 12:11:56 +02:00 committed by Marek Kotewicz
parent 1098f0710b
commit 582c446146
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
[package]
description = "Generic transaction pool."
name = "transaction-pool"
version = "1.12.2"
version = "1.12.3"
license = "GPL-3.0"
authors = ["Parity Technologies <admin@parity.io>"]

View File

@ -96,7 +96,7 @@ pub mod scoring;
pub use self::error::{Error, ErrorKind};
pub use self::listener::{Listener, NoopListener};
pub use self::options::Options;
pub use self::pool::{Pool, PendingIterator, Transaction};
pub use self::pool::{Pool, PendingIterator, UnorderedIterator, Transaction};
pub use self::ready::{Ready, Readiness};
pub use self::scoring::Scoring;
pub use self::status::{LightStatus, Status};