Correctly indicate genesis activation_epoch (#7091)
* Correctly indicate genesis activation_epoch * Drop the '(Genesis)'
This commit is contained in:
@ -571,7 +571,11 @@ pub fn process_show_stake_account(
|
|||||||
}
|
}
|
||||||
println!(
|
println!(
|
||||||
"stake activates starting from epoch: {}",
|
"stake activates starting from epoch: {}",
|
||||||
stake.activation_epoch
|
if stake.activation_epoch < std::u64::MAX {
|
||||||
|
stake.activation_epoch
|
||||||
|
} else {
|
||||||
|
0
|
||||||
|
}
|
||||||
);
|
);
|
||||||
if stake.deactivation_epoch < std::u64::MAX {
|
if stake.deactivation_epoch < std::u64::MAX {
|
||||||
println!(
|
println!(
|
||||||
|
Reference in New Issue
Block a user