Skip to content

ergo-lib-v0.28.0

Latest
Compare
Choose a tag to compare
@SethDusek SethDusek released this 09 Aug 15:09
· 15 commits to develop since this release
ergo-lib-v0.28.0
635bbac

Breaking Changes

ErgoStateContext::new now requires Parameters for blockchain parameters. For consensus-critical applications it is important that Parameters represents the latest state of the blockchain. For most users however, using Parameters::default() will be sufficient as this will not affect signing:

- let state_context = ErgoStateContext::new(pre_header, headers);
+ let state_context = ErgoStateContext::new(pre_header, headers, Parameters::default());

Added

What's Changed

New Contributors

Full Changelog: ergo-lib-v0.27.1...ergo-lib-v0.28.0