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

@ -17,4 +17,7 @@ pub struct EpochInfo {
/// The current block height
pub block_height: u64,
/// Total number of transactions processed without error since genesis
pub transaction_count: Option<u64>,
}