rename trie to patricia-trie

This commit is contained in:
Hawstein
2017-09-13 01:23:02 +08:00
parent ade37be25b
commit dd7a60c7a8
24 changed files with 45 additions and 45 deletions

View File

@@ -78,7 +78,7 @@ extern crate heapsize;
extern crate futures;
extern crate itertools;
extern crate memorydb;
extern crate trie;
extern crate patricia_trie as trie;
extern crate rand;
extern crate rlp;
extern crate parking_lot;

View File

@@ -1542,7 +1542,7 @@ pub mod epoch_signal {
use super::{Field, NoSuchOutput, OutputKind, Output};
use rlp::{Encodable, Decodable, DecoderError, RlpStream, UntrustedRlp};
use bigint::hash::H256;
use util::Bytes;
use bytes::Bytes;
/// Potentially incomplete epoch signal request.
#[derive(Debug, Clone, PartialEq, Eq)]