File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
aptos-move/aptos-release-builder/src/components Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,7 @@ pub enum FeatureFlag {
121
121
DefaultToConcurrentFungibleBalance ,
122
122
LimitVMTypeSize ,
123
123
AbortIfMultisigPayloadMismatch ,
124
+ GovernedGasPool ,
124
125
}
125
126
126
127
fn generate_features_blob ( writer : & CodeWriter , data : & [ u64 ] ) {
@@ -316,6 +317,7 @@ impl From<FeatureFlag> for AptosFeatureFlag {
316
317
FeatureFlag :: AbortIfMultisigPayloadMismatch => {
317
318
AptosFeatureFlag :: ABORT_IF_MULTISIG_PAYLOAD_MISMATCH
318
319
} ,
320
+ FeatureFlag :: GovernedGasPool => AptosFeatureFlag :: GOVERNED_GAS_POOL ,
319
321
}
320
322
}
321
323
}
@@ -440,6 +442,7 @@ impl From<AptosFeatureFlag> for FeatureFlag {
440
442
AptosFeatureFlag :: ABORT_IF_MULTISIG_PAYLOAD_MISMATCH => {
441
443
FeatureFlag :: AbortIfMultisigPayloadMismatch
442
444
} ,
445
+ AptosFeatureFlag :: GOVERNED_GAS_POOL => FeatureFlag :: GovernedGasPool ,
443
446
}
444
447
}
445
448
}
You can’t perform that action at this time.
0 commit comments