Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
23 changes: 23 additions & 0 deletions dmq-node/changelog.d/20260629_134054_coot_payload_lower_bound.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!--
A new scriv changelog fragment.

Uncomment the section that is right (remove the HTML comment wrapper).
For top level release notes, leave all the headers commented out.
-->

### Breaking

- Lower `minSigBodySize` to `90` bytes.

<!--
### Non-Breaking

- A bullet item for the Non-Breaking category.

-->
<!--
### Patch

- A bullet item for the Patch category.

-->
2 changes: 1 addition & 1 deletion dmq-node/src/DMQ/Policy.hs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ maxSigSize = 2800
--
-- See: https://cips.cardano.org/cip/CIP-0137#mithril-extra-network-usage
minSigBodySize :: SizeInBytes
minSigBodySize = 360
minSigBodySize = 90

-- | Maximum `sigBody` size, it must be smaller than `maxSigSize`.
--
Expand Down
Loading