Skip to content

Commit

Permalink
convert Solidity SC resolution globs to PathBuf
Browse files Browse the repository at this point in the history
  • Loading branch information
hedgar2017 committed Jan 16, 2025
1 parent d7e8a95 commit be298bb
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions compiler_tester/src/vm/eravm/system_contracts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ impl SystemContracts {
),
(
web3::types::Address::from_low_u64_be(zkevm_opcode_defs::ADDRESS_IDENTITY.into()),
Self::normalize_path(Self::PATH_IDENTITY.0, None),
Self::normalize_path(Self::PATH_IDENTITY.0, Some(Self::PATH_IDENTITY.1)),
),
(
web3::types::Address::from_low_u64_be(
Expand Down Expand Up @@ -336,8 +336,12 @@ impl SystemContracts {
"era-contracts/system-contracts/contracts/interfaces/**/*.sol",
"era-contracts/system-contracts/contracts/openzeppelin/**/*.sol",
"tests/solidity/complex/interpreter/*.sol",
] {
for path in glob::glob(pattern)?.filter_map(Result::ok) {
]
.into_iter()
.map(PathBuf::from)
{
for path in glob::glob(pattern.to_str().expect("Always valid"))?.filter_map(Result::ok)
{
let path = path.to_string_lossy().to_string();
if !solidity_file_paths.contains(&path) {
solidity_file_paths.push(path);
Expand Down Expand Up @@ -492,7 +496,10 @@ impl SystemContracts {
)
})?;

if file_path == r"era-contracts\system-contracts\contracts\Constants.sol" {
if file_path
== PathBuf::from("era-contracts/system-contracts/contracts/Constants.sol")
.to_string_lossy()
{
source = source.replace("{{SYSTEM_CONTRACTS_OFFSET}}", "0x8000");
}

Expand Down

0 comments on commit be298bb

Please sign in to comment.