Skip to content

Commit

Permalink
chore: generate less sol! abi implementations (#6390)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Nov 21, 2023
1 parent 3afbc33 commit 067e658
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/cheatcodes/spec/src/vm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ use alloy_sol_types::sol;
use foundry_macros::Cheatcode;

sol! {
#![sol(abi)]

// Cheatcodes are marked as view/pure/none using the following rules:
// 0. A call's observable behaviour includes its return value, logs, reverts and state writes,
// 1. If you can influence a later call's observable behaviour, you're neither `view` nor `pure`
Expand All @@ -18,6 +16,7 @@ sol! {

/// Foundry cheatcodes interface.
#[derive(Debug, Cheatcode)] // Keep this list small to avoid unnecessary bloat.
#[sol(abi)]
interface Vm {
// ======== Types ========

Expand Down

0 comments on commit 067e658

Please sign in to comment.