Skip to content

Commit 03edc16

Browse files
committed
fix a bug
1 parent 4ec436a commit 03edc16

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.0.1] - 2024-12-17
9+
10+
### Fixed
11+
- Fixed a bug where the database was not being reset while starting a new simulation
12+
13+
814
## [2.0.0] - 2024-12-09
915

1016
### Added

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "revm-trace"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
edition = "2021"
55
authors = ["Rollp0x <[email protected]>"]
66
description = "A Rust library for tracing EVM transactions, including call traces, asset transfers, and error analysis using REVM"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Perfect for:
5858

5959
Add this to your `Cargo.toml`:
6060
```toml
61-
revm-trace = "2.0.0"
61+
revm-trace = "2.0.1"
6262
```
6363

6464
## Quick Start

src/evm/execution.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ where
163163

164164
// 1. Preparation
165165
self.set_block_env(block_env);
166+
self.reset_db();
166167

167168
// 2. Execution
168169
for input in transactions {

0 commit comments

Comments
 (0)