Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Jrigada committed Jul 9, 2024
1 parent 4059706 commit d02a566
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 2 additions & 1 deletion crates/evm/traces/src/decoder/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,8 @@ impl CallTraceDecoder {
.iter()
.map(|node| {
let address = &node.trace.address;
let output = node.trace.kind.is_any_create().then_some(&node.trace.output[..]); (address, output)
let output = node.trace.kind.is_any_create().then_some(&node.trace.output[..]);
(address, output)
})
.filter(|&(address, _)| {
!self.labels.contains_key(address) || !self.contracts.contains_key(address)
Expand Down
4 changes: 0 additions & 4 deletions zk-tests/foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@ src = 'src'
out = 'out'
libs = ['lib']
fs_permissions = [{ access = "read", path = "./zkout/ConstantNumber.sol/ConstantNumber.json"}]
libraries = []
solc = "0.8.20"

[profile.default.zksync]
zksolc="1.5.0"
[fuzz]
no_zksync_reserved_addresses = true

Expand Down

0 comments on commit d02a566

Please sign in to comment.