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 269f6af97e
commit 564590462a
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>,
}