Skip to content

Commit

Permalink
Fix hardcoded values in wiring
Browse files Browse the repository at this point in the history
  • Loading branch information
BedrockSquirrel committed Dec 9, 2024
1 parent 5b4a4ea commit 46894db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testnet/launcher/l1grantsequencers/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ func main() {

l1grantsequencers, err := l1gs.NewGrantSequencers(
l1gs.NewGrantSequencerConfig(
l1gs.WithL1HTTPURL("http://eth2network:8025"),
l1gs.WithPrivateKey("f52e5418e349dccdda29b6ac8b0abe6576bb7713886aa85abea6181ba731f9bb"),
l1gs.WithL1HTTPURL(cliConfig.l1HTTPURL),
l1gs.WithPrivateKey(cliConfig.privateKey),
l1gs.WithDockerImage(cliConfig.dockerImage),
l1gs.WithMgmtContractAddress(cliConfig.mgmtContractAddress),
l1gs.WithEnclaveIDs(cliConfig.enclaveIDs),
Expand Down

0 comments on commit 46894db

Please sign in to comment.