bee
bee copied to clipboard
reserve storage radius can fall below the reserve minimum radius safeguard
the localstore/reserve should be passed the reserve minimum radius option so that in the event of a radius drop, it does not fall below the minimum.
the waitNetworkRFunc should also return
if local <= uint8(o.ReserveMinimumRadius) {
return max(network, uint8(o.ReserveMinimumRadius)), nil
} else {
return local, nil
}