Skip to content

Commit

Permalink
v0.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
cd1m0 committed Oct 8, 2024
1 parent b1b3890 commit 4ddd21c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sol-dbg",
"version": "0.6.4",
"version": "0.6.5",
"description": "Small (experimental) Solidity-level debugger built around EthereumJS",
"keywords": [],
"files": [
Expand Down
5 changes: 4 additions & 1 deletion src/utils/test_runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,10 @@ export class TxRunner {
tx: TypedTransaction,
stepNum: number
): Promise<ContractStates | undefined> {
const tracer = new StorageDecodeTracer(this.artifactManager);
const tracer = new StorageDecodeTracer(this.artifactManager, {
strict: true,
foundryCheatcodes: this._foundryCheatcodes
});

const liveContracts = new Set(this.getContractsBefore(tx));
const preimages = new Map(this.getKeccakPreimagesBefore(tx));
Expand Down

0 comments on commit 4ddd21c

Please sign in to comment.