Skip to content

Commit

Permalink
remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
cmwaters committed Dec 19, 2024
1 parent 41bcdaa commit f1d13b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ require (
github.com/consensys/gnark-crypto v0.14.0
github.com/cosmos/solidity-ibc-eureka/abigen v0.0.0-20241207083532-66bed7cfbbe1
github.com/ethereum/go-ethereum v1.14.12
github.com/gogo/protobuf v1.3.2
github.com/grpc-ecosystem/grpc-gateway v1.16.0
github.com/hashicorp/go-multierror v1.1.1
github.com/miguelmota/go-ethereum-hdwallet v0.1.2
Expand Down Expand Up @@ -127,6 +126,7 @@ require (
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
github.com/gofrs/flock v0.8.1 // indirect
github.com/gogo/googleapis v1.4.1 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/glog v1.2.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/mock v1.6.0 // indirect
Expand Down
4 changes: 1 addition & 3 deletions provers/celestia-prover/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ impl ProverService {
fn new() -> ProverService {
let rpc_url = env::var("RPC_URL").expect("RPC_URL not set");
let contract_address = env::var("CONTRACT_ADDRESS").expect("CONTRACT_ADDRESS not set");
let url = Url::parse(rpc_url.as_str()).expect("Failed to parse URL");
let url = Url::parse(rpc_url.as_str()).expect("Failed to parse RPC_URL");

ProverService {
tendermint_prover: SP1ICS07TendermintProver::new(SupportedProofType::Groth16),
Expand Down Expand Up @@ -91,8 +91,6 @@ impl Prover for ProverService {
&proposed_header,
now,
);

// Implement your state transition proof logic here
let response = ProveStateTransitionResponse {
proof: proof.bytes().to_vec(),
public_values: proof.public_values.to_vec(),
Expand Down

0 comments on commit f1d13b0

Please sign in to comment.