upgrade rust to 1.37 (#5611)

This commit is contained in:
Rob Walker
2019-08-23 08:55:51 -07:00
committed by GitHub
parent aeaa0feb61
commit 52f6da5cee
10 changed files with 14 additions and 16 deletions

View File

@ -115,9 +115,9 @@ impl<T: Clone> AccountsIndex<T> {
);
fork_vec.retain(|(fork, _)| !Self::can_purge(max_root, *fork));
return None;
None
} else {
return Some(account_info);
Some(account_info)
}
}