@@ -43,7 +43,6 @@ type ArgsNewNetworkProvider struct {
4343 FirstHistoricalEpoch uint32
4444 NumHistoricalEpochs uint32
4545 ShouldHandleContracts bool
46- ActivationEpochSirius uint32
4746 ActivationEpochSpica uint32
4847
4948 ObserverFacade observerFacade
@@ -67,7 +66,6 @@ type networkProvider struct {
6766 firstHistoricalEpoch uint32
6867 numHistoricalEpochs uint32
6968 shouldHandleContracts bool
70- activationEpochSirius uint32
7169 activationEpochSpica uint32
7270
7371 observerFacade observerFacade
@@ -109,7 +107,6 @@ func NewNetworkProvider(args ArgsNewNetworkProvider) (*networkProvider, error) {
109107 firstHistoricalEpoch : args .FirstHistoricalEpoch ,
110108 numHistoricalEpochs : args .NumHistoricalEpochs ,
111109 shouldHandleContracts : args .ShouldHandleContracts ,
112- activationEpochSirius : args .ActivationEpochSirius ,
113110 activationEpochSpica : args .ActivationEpochSpica ,
114111
115112 observerFacade : args .ObserverFacade ,
@@ -476,11 +473,6 @@ func (provider *networkProvider) ComputeTransactionFeeForMoveBalance(tx *transac
476473 return fee
477474}
478475
479- // IsReleaseSiriusActive returns whether the Sirius release is active in the provided epoch
480- func (provider * networkProvider ) IsReleaseSiriusActive (epoch uint32 ) bool {
481- return epoch >= provider .activationEpochSirius
482- }
483-
484476// IsReleaseSpicaActive returns whether the Spica release is active in the provided epoch
485477func (provider * networkProvider ) IsReleaseSpicaActive (epoch uint32 ) bool {
486478 return epoch >= provider .activationEpochSpica
@@ -499,7 +491,6 @@ func (provider *networkProvider) LogDescription() {
499491 "firstHistoricalEpoch" , provider .firstHistoricalEpoch ,
500492 "numHistoricalEpochs" , provider .numHistoricalEpochs ,
501493 "shouldHandleContracts" , provider .shouldHandleContracts ,
502- "activationEpochSirius" , provider .activationEpochSirius ,
503494 "activationEpochSpica" , provider .activationEpochSpica ,
504495 "nativeCurrency" , provider .GetNativeCurrency ().Symbol ,
505496 "customCurrencies" , provider .GetCustomCurrenciesSymbols (),
0 commit comments