diff --git a/foundry.toml b/foundry.toml index dc1c58c..763fc6a 100644 --- a/foundry.toml +++ b/foundry.toml @@ -1,6 +1,6 @@ # Full reference https://github.com/foundry-rs/foundry/tree/master/config -[default] +[profile.default] auto_detect_solc = false fuzz_runs = 256 libs = ["lib"] diff --git a/src/Vm.sol b/src/Vm.sol index d3cf193..769da6d 100644 --- a/src/Vm.sol +++ b/src/Vm.sol @@ -1,4 +1,4 @@ -/// @dev SPDX-License-Identifier: MIT +// SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.0; /// @dev An EVM interpreter written with testing and debugging in mind. This is usually either HEVM or REVM.