Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change the way exec.Command is called to sanitize parameters #356

Merged
merged 2 commits into from
Oct 2, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions testutils/anvil.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,7 @@ func GetContractAddressesFromContractRegistry(ethHttpUrl string) (mockAvsContrac
}

func AdvanceChainByNBlocks(n int, anvilEndpoint string) {
cmd := exec.Command("bash", "-c",
fmt.Sprintf(
// see https://book.getfoundry.sh/reference/anvil/#custom-methods
pablodeymo marked this conversation as resolved.
Show resolved Hide resolved
`cast rpc anvil_mine %d --rpc-url %s`,
n, anvilEndpoint),
)
cmd := exec.Command("cast", "rpc", "anvil_mine", fmt.Sprintf("%d", n), "--rpc-url", anvilEndpoint)
err := cmd.Run()
if err != nil {
panic(err)
Expand Down