Skip to content

Commit

Permalink
fix zAddress
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrower95 committed Nov 14, 2024
1 parent 98aa01f commit aed9591
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/utils/ZeusScript.sol
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ abstract contract ZeusScript is Script {
return updatedAddresses[key];
}

return vm.envAddress(key);
string memory envvar = envPrefix.concat(key);
return vm.envAddress(envvar);
}

/**
Expand Down

0 comments on commit aed9591

Please sign in to comment.