Bring back batching.

This commit is contained in:
Gav Wood
2016-03-13 21:54:06 +01:00
parent 0ccb9df4f1
commit 26f41b711c
3 changed files with 12 additions and 13 deletions

View File

@@ -21,12 +21,13 @@ use network::NetworkError;
use rlp::DecoderError;
use io;
use std::fmt;
use hash::H256;
#[derive(Debug)]
/// Error in database subsystem.
pub enum BaseDataError {
/// An entry was removed more times than inserted.
NegativelyReferencedHash,
NegativelyReferencedHash(H256),
}
#[derive(Debug)]