File tree Expand file tree Collapse file tree 4 files changed +3
-9
lines changed Expand file tree Collapse file tree 4 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ Changes to the reference FVM implementation.
4
4
5
5
## [ Unreleased]
6
6
7
+ - chore: remove the nv27-dev feature flag [ #2202 ] ( https://github.com/filecoin-project/ref-fvm/pull/2202 )
8
+
7
9
## 4.7.2 [ 2025-05-01]
8
10
9
11
- feat: add nv27-skeleton [ #2175 ] ( https://github.com/filecoin-project/ref-fvm/pull/2175 )
Original file line number Diff line number Diff line change @@ -60,7 +60,6 @@ gas_calibration = []
60
60
# The current implementation keeps it by default for backward compatibility reason.
61
61
# See <https://github.com/filecoin-project/ref-fvm/issues/2001>
62
62
verify-signature = []
63
- nv27-dev = []
64
63
65
64
# Allow coverage attribute.
66
65
[lints .rust ]
Original file line number Diff line number Diff line change @@ -1085,9 +1085,7 @@ pub fn price_list_by_network_version(network_version: NetworkVersion) -> &'stati
1085
1085
NetworkVersion :: V21 | NetworkVersion :: V22 | NetworkVersion :: V23 | NetworkVersion :: V24 => {
1086
1086
& WATERMELON_PRICES
1087
1087
}
1088
- NetworkVersion :: V25 | NetworkVersion :: V26 => & TEEP_PRICES ,
1089
- #[ cfg( feature = "nv27-dev" ) ]
1090
- NetworkVersion :: V27 => & TEEP_PRICES ,
1088
+ NetworkVersion :: V25 | NetworkVersion :: V26 | NetworkVersion :: V27 => & TEEP_PRICES ,
1091
1089
_ => panic ! ( "network version {nv} not supported" , nv = network_version) ,
1092
1090
}
1093
1091
}
Original file line number Diff line number Diff line change 51
51
/// * `blockstore`: The underlying [blockstore][`Blockstore`] for reading/writing state.
52
52
/// * `externs`: Client-provided ["external"][`Externs`] methods for accessing chain state.
53
53
pub fn new ( context : & MachineContext , blockstore : B , externs : E ) -> anyhow:: Result < Self > {
54
- #[ cfg( not( feature = "nv27-dev" ) ) ]
55
- const SUPPORTED_VERSIONS : RangeInclusive < NetworkVersion > =
56
- NetworkVersion :: V21 ..=NetworkVersion :: V26 ;
57
-
58
- #[ cfg( feature = "nv27-dev" ) ]
59
54
const SUPPORTED_VERSIONS : RangeInclusive < NetworkVersion > =
60
55
NetworkVersion :: V21 ..=NetworkVersion :: V27 ;
61
56
You can’t perform that action at this time.
0 commit comments