Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Unreleased

- Change default value for `epoch_stability_depth` from 102400 to 2160
- fix incorrect keys bech32 HRP by always using the ones provided by the library
- update REST API: add new endpoint AccountVotes (`/api/v1/votes/plan/account-votes/{account_id}`)
- Support parallel lanes in spending counters on account outputs. This allows
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub const MINIMUM_NUMBER_OF_SLOTS_PER_EPOCH: u32 = 1;
pub const MAXIMUM_NUMBER_OF_SLOTS_PER_EPOCH: u32 = 1_000_000;

/// the default value for epoch stability depth
pub const DEFAULT_EPOCH_STABILITY_DEPTH: u32 = 102_400;
pub const DEFAULT_EPOCH_STABILITY_DEPTH: u32 = 2160;

/// the default value for block content max size
pub const DEFAULT_BLOCK_CONTENT_MAX_SIZE: u32 = 102_400;
Expand Down