Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
Greg Fitzgerald
2020-06-17 21:54:52 -06:00
committed by GitHub
parent 5b9cd72d8f
commit 0550b893b0
29 changed files with 45 additions and 46 deletions

View File

@ -62,7 +62,7 @@ impl AbiDigester {
}
}
// must create separate instances because we can't pass the single instnace to
// must create separate instances because we can't pass the single instance to
// `.serialize()` multiple times
pub fn create_new(&self) -> Self {
Self {

View File

@ -83,7 +83,7 @@ mod tests {
#[test]
fn slot_history_test1() {
solana_logger::setup();
// should be divisable by 64 since the clear logic works on blocks
// should be divisible by 64 since the clear logic works on blocks
assert_eq!(MAX_ENTRIES % 64, 0);
let mut slot_history = SlotHistory::default();
info!("add 2");