Misc fixes (#11510)

* Misc fixes

Did some code reading and made random changes as I went.

* Update ethcore/src/client/client.rs

Co-Authored-By: Andronik Ordian <write@reusable.software>

Co-authored-by: Andronik Ordian <write@reusable.software>
This commit is contained in:
David
2020-02-23 16:49:17 +01:00
committed by GitHub
parent 2018f5b0ab
commit bbcd094906
10 changed files with 27 additions and 25 deletions

View File

@@ -100,7 +100,7 @@ impl From<ethjson::spec::Account> for PodAccount {
}
}
/// Determine difference between two optionally existant `Account`s. Returns None
/// Determine difference between two optionally existent `Account`s. Returns None
/// if they are the same.
pub fn diff_pod(pre: Option<&PodAccount>, post: Option<&PodAccount>) -> Option<AccountDiff> {
match (pre, post) {