Remove duplicate test cases (#10385)

Case create_account() is same as new_account()
This commit is contained in:
Mohanson 2019-02-27 17:07:12 +08:00 committed by Marek Kotewicz
parent 2fbb952cdd
commit c7ded6a785
1 changed files with 0 additions and 7 deletions

View File

@ -741,11 +741,4 @@ mod tests {
assert_eq!(a.code_hash(), KECCAK_EMPTY);
assert_eq!(a.storage_root().unwrap(), KECCAK_NULL_RLP);
}
#[test]
fn create_account() {
let a = Account::new(69u8.into(), 0u8.into(), HashMap::new(), Bytes::new());
assert_eq!(a.rlp().to_hex(), "f8448045a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470");
}
}