Fix bad merge

This commit is contained in:
Carl 2019-01-31 19:47:21 -08:00 committed by Michael Vines
parent 37003da854
commit b6b179af97
1 changed files with 2 additions and 2 deletions

View File

@ -894,8 +894,8 @@ impl Bank {
}
#[cfg(test)]
pub fn last_ids(&self) -> &RwLock<StatusDeque<Result<()>>> {
&self.last_ids
pub fn last_ids(&self) -> &RwLock<LastIdQueue> {
&self.last_id_queue
}
}