Skip to content

Commit

Permalink
deprecate stale fee collection implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-aptos committed Apr 4, 2024
1 parent ac71277 commit 1a77376
Show file tree
Hide file tree
Showing 39 changed files with 41 additions and 2,073 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ impl From<FeatureFlag> for AptosFeatureFlag {
match f {
FeatureFlag::CodeDependencyCheck => AptosFeatureFlag::CODE_DEPENDENCY_CHECK,
FeatureFlag::CollectAndDistributeGasFees => {
AptosFeatureFlag::COLLECT_AND_DISTRIBUTE_GAS_FEES
AptosFeatureFlag::_DEPRECATED_COLLECT_AND_DISTRIBUTE_GAS_FEES
},
FeatureFlag::TreatFriendAsPrivate => AptosFeatureFlag::TREAT_FRIEND_AS_PRIVATE,
FeatureFlag::Sha512AndRipeMd160Natives => {
Expand Down Expand Up @@ -279,7 +279,7 @@ impl From<AptosFeatureFlag> for FeatureFlag {
fn from(f: AptosFeatureFlag) -> Self {
match f {
AptosFeatureFlag::CODE_DEPENDENCY_CHECK => FeatureFlag::CodeDependencyCheck,
AptosFeatureFlag::COLLECT_AND_DISTRIBUTE_GAS_FEES => {
AptosFeatureFlag::_DEPRECATED_COLLECT_AND_DISTRIBUTE_GAS_FEES => {
FeatureFlag::CollectAndDistributeGasFees
},
AptosFeatureFlag::TREAT_FRIEND_AS_PRIVATE => FeatureFlag::TreatFriendAsPrivate,
Expand Down
1 change: 0 additions & 1 deletion aptos-move/e2e-move-tests/src/tests/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ mod storage_refund;
mod string_args;
mod token_event_store;
mod token_objects;
mod transaction_fee;
mod type_too_large;
mod vector_numeric_address;
mod vm;
Expand Down
Loading

0 comments on commit 1a77376

Please sign in to comment.