move Ancestors to its own module (#17316)

This commit is contained in:
Jeff Washington (jwash)
2021-05-19 11:50:34 -05:00
committed by GitHub
parent 0781fe1b4f
commit ed9cbd50f0
12 changed files with 24 additions and 14 deletions

4
runtime/src/ancestors.rs Normal file
View File

@@ -0,0 +1,4 @@
use solana_sdk::clock::Slot;
use std::collections::HashMap;
pub type Ancestors = HashMap<Slot, usize>;