Rename builder module to batch

This commit is contained in:
Lorenzo Manacorda 2017-09-24 19:55:01 +02:00
parent 5f025cc1b8
commit aab1cf020c
No known key found for this signature in database
GPG Key ID: CF2797A94C182810
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@
use rlp::{Encodable, Decodable, DecoderError, RlpStream, UntrustedRlp};
use bigint::hash::H256;
mod builder;
mod batch;
// re-exports of request types.
pub use self::header::{
@ -73,7 +73,7 @@ pub use self::epoch_signal::{
Response as SignalResponse,
};
pub use self::builder::{Builder, Requests};
pub use self::batch::{Batch, Builder};
/// Error indicating a reference to a non-existent or wrongly-typed output.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]