Move ethereum-specific H256FastMap type to own crate (#9307)

* Add a `fastmap` crate that provides the H256FastMap specialized HashMap

* Use `fastmap` instead of `plain_hasher`

* Update submodules for Reasons™

* Submodule update
This commit is contained in:
David
2018-08-09 09:51:48 +02:00
committed by Marek Kotewicz
parent 78a38e9825
commit e2095d4a5d
15 changed files with 72 additions and 14 deletions

View File

@@ -41,7 +41,7 @@ use ethereum_types::{H256, H264, U256};
use heapsize::HeapSizeOf;
use kvdb::{DBTransaction, KeyValueDB};
use parking_lot::{Mutex, RwLock};
use plain_hasher::H256FastMap;
use fastmap::H256FastMap;
use rlp::{Encodable, Decodable, DecoderError, RlpStream, Rlp};
use smallvec::SmallVec;