Skip to content

Commit

Permalink
rm redundant todos
Browse files Browse the repository at this point in the history
  • Loading branch information
rnbguy committed Feb 1, 2025
1 parent cb4fa8d commit c14166f
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ where

let chain_status = chain.query_chain_status().await?;

// hack(rano): passing block hash to message builder
let unsigned_membership_proof_bytes = MembershipVerifierContainer {
state_root: chain_status.block_hash.to_bytes_be().to_vec(),
prefix: chain.ibc_commitment_prefix().clone(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ where

let chain_status = chain.query_chain_status().await?;

// hack(rano): passing block hash to message builder
let unsigned_membership_proof_bytes = MembershipVerifierContainer {
state_root: chain_status.block_hash.to_bytes_be().to_vec(),
prefix: chain.ibc_commitment_prefix().clone(),
Expand All @@ -132,7 +131,6 @@ where
}
.canonical_bytes();

// TODO(rano): how to get the proof?
let dummy_proof = StarknetCommitmentProof {
proof_height: chain_status.height,
unsigned_membership_proof_bytes,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ where

let chain_status = chain.query_chain_status().await?;

// hack(rano): passing block hash to message builder
let unsigned_membership_proof_bytes = MembershipVerifierContainer {
state_root: chain_status.block_hash.to_bytes_be().to_vec(),
prefix: chain.ibc_commitment_prefix().clone(),
Expand All @@ -120,7 +119,6 @@ where
}
.canonical_bytes();

// TODO(rano): how to get the proof?
let dummy_proof = StarknetCommitmentProof {
proof_height: chain_status.height,
// FIXME(hack) we are passing msg hash as proof as we don't have access to signer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ where

let chain_status = chain.query_chain_status().await?;

// hack(rano): passing block hash to message builder
let unsigned_membership_proof_bytes = MembershipVerifierContainer {
state_root: chain_status.block_hash.to_bytes_be().to_vec(),
prefix: chain.ibc_commitment_prefix().clone(),
Expand All @@ -107,7 +106,6 @@ where
}
.canonical_bytes();

// TODO(rano): how to get the proof?
let dummy_proof = StarknetCommitmentProof {
proof_height: chain_status.height,
unsigned_membership_proof_bytes,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ where

let chain_status = chain.query_chain_status().await?;

// hack(rano): passing block hash to message builder
let unsigned_membership_proof_bytes = MembershipVerifierContainer {
state_root: chain_status.block_hash.to_bytes_be().to_vec(),
prefix: chain.ibc_commitment_prefix().clone(),
Expand All @@ -107,7 +106,6 @@ where
}
.canonical_bytes();

// TODO(rano): how to get the proof?
let dummy_proof = StarknetCommitmentProof {
proof_height: chain_status.height,
unsigned_membership_proof_bytes,
Expand Down

0 comments on commit c14166f

Please sign in to comment.