File tree 3 files changed +11
-2
lines changed
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " trevm"
3
- version = " 0.19.5 "
3
+ version = " 0.19.6 "
4
4
rust-version = " 1.83.0"
5
5
edition = " 2021"
6
6
authors = [" init4" ]
Original file line number Diff line number Diff line change @@ -28,6 +28,15 @@ Trevm is useful for:
28
28
- searchers
29
29
- any other transaction simulation usecase
30
30
31
+ ## Note on Trevm Versioning
32
+
33
+ Trevm generally uses [ semantic versioning] ( https://semver.org/ ) . However, we
34
+ also strive to indicate the MAJOR version of revm in the MINOR version of
35
+ trevm. For example, trevm ` 0.19.x ` SHOULD BE compatible with revm ` 19.x.x ` . In
36
+ general, we will try to maintain compatibility with the latest revm version,
37
+ and will not backport trevm fixes to older trevm or revm versions. It is
38
+ generally not advised to use old revm versions, as the EVM is a living spec.
39
+
31
40
## Limitations
32
41
33
42
Trevm is a work in progress and is not feature complete. In particular, trevm
Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ impl Block for alloy::consensus::Header {
236
236
* basefee = self . base_fee_per_gas . map_or_else ( Default :: default, U256 :: from) ;
237
237
238
238
* difficulty = self . difficulty ;
239
- * prevrandao = if self . difficulty . is_zero ( ) { Some ( self . mix_hash ) } else { None } ;
239
+ * prevrandao = Some ( self . mix_hash ) ;
240
240
241
241
if let Some ( excess_blob_gas) = self . excess_blob_gas {
242
242
block_env
You can’t perform that action at this time.
0 commit comments