Skip to content

Commit

Permalink
release yaml for aip 57 (#11364)
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-aptos authored and sherry-x committed Dec 15, 2023
1 parent 86a2fbc commit 75bf51c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
23 changes: 23 additions & 0 deletions aptos-move/aptos-release-builder/data/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,26 @@ proposals:
- FeatureFlag:
enabled:
- sponsored_automatic_account_creation
- name: step_4_update_block_limits
metadata:
title: "AIP-57: Block Output Size Limit and Conflict-Aware Block Gas Limit"
description: "AIP-57: Block Output Size Limit and Conflict-Aware Block Gas Limit"
discussion_url: "https://github.com/aptos-foundation/AIPs/issues/285"
execution_mode: MultiStep
update_sequence:
- Execution:
V4:
transaction_shuffler_type:
sender_aware_v2: 32
block_gas_limit_type:
complex_limit_v1:
effective_block_gas_limit: 40000
execution_gas_effective_multiplier: 1
io_gas_effective_multiplier: 1
conflict_penalty_window: 6
use_granular_resource_group_conflicts: false
use_module_publishing_block_conflict: false
block_output_limit: 5242880
include_user_txn_size_in_block_output: true
add_block_limit_outcome_onchain: false
transaction_deduper_type: txn_hash_and_authenticator_v1
1 change: 1 addition & 0 deletions types/src/on_chain_config/execution_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ pub enum TransactionDeduperType {
}

#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
#[serde(rename_all = "snake_case")] // cannot use tag = "type" as nested enums cannot work, and bcs doesn't support it
pub enum BlockGasLimitType {
NoLimit,
Limit(u64),
Expand Down

0 comments on commit 75bf51c

Please sign in to comment.