Add transactionCount field to GetEpochInfo

(cherry picked from commit efc091e28a)
This commit is contained in:
Michael Vines
2020-12-17 10:04:53 -08:00
parent 34b3387104
commit bc8300a308
4 changed files with 9 additions and 0 deletions

View File

@@ -4358,12 +4358,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,
}
}