saturating sub epoch for blob boundary
This commit is contained in:
parent
5a42f6b067
commit
658e9d9bba
@ -5428,7 +5428,7 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
|
|||||||
self.epoch().ok().map(|current_epoch| {
|
self.epoch().ok().map(|current_epoch| {
|
||||||
std::cmp::max(
|
std::cmp::max(
|
||||||
fork_epoch,
|
fork_epoch,
|
||||||
current_epoch - *MIN_EPOCHS_FOR_BLOBS_SIDECARS_REQUESTS,
|
current_epoch.saturating_sub(*MIN_EPOCHS_FOR_BLOBS_SIDECARS_REQUESTS),
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user