fixed parsing blockchain file, added default account to rpc tests

This commit is contained in:
debris
2016-03-19 11:02:44 +01:00
parent 1d822132f0
commit 906e9b395e
3 changed files with 10 additions and 5 deletions

View File

@@ -31,7 +31,7 @@ pub struct Account {
/// Nonce.
pub nonce: Uint,
/// Storage.
pub storage: BTreeMap<Uint, H256>,
pub storage: BTreeMap<Uint, Uint>,
}
#[cfg(test)]