Add transactionCount field to GetEpochInfo

This commit is contained in:
Michael Vines
2020-12-17 10:04:53 -08:00
parent 01fe835e73
commit efc091e28a
4 changed files with 9 additions and 0 deletions

View File

@ -4386,12 +4386,14 @@ impl Bank {
let block_height = self.block_height();
let (epoch, slot_index) = self.get_epoch_and_slot_index(absolute_slot);
let slots_in_epoch = self.get_slots_in_epoch(epoch);
let transaction_count = Some(self.transaction_count());
EpochInfo {
epoch,
slot_index,
slots_in_epoch,
absolute_slot,
block_height,
transaction_count,
}
}