Skip to content

Commit

Permalink
style: self review items
Browse files Browse the repository at this point in the history
  • Loading branch information
srdtrk committed Jan 8, 2025
1 parent a89affb commit c8af561
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion e2e/interchaintestv8/relayer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,6 @@ func (s *RelayerTestSuite) Test_10_RecvPacketToCosmos() {
}

func (s *RelayerTestSuite) RecvPacketToCosmosTest(ctx context.Context, numOfTransfers int) {
// s.SkipIfEthTestnetType(testvalues.EthTestnetTypePoW)
s.SetupSuite(ctx, operator.ProofTypeGroth16) // Doesn't matter, since we won't relay to eth in this test

eth, simd := s.EthChain, s.CosmosChains[0]
Expand Down
3 changes: 1 addition & 2 deletions packages/relayer-lib/src/tx_builder/eth_to_cosmos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ use prost::Message;
use sp1_ics07_tendermint_utils::rpc::TendermintRpcExt;
use tendermint_rpc::HttpClient;

use crate::utils::cosmos::inject_mock_proofs;
use crate::utils::{cosmos, wait_for_condition};
use crate::{
chain::{CosmosSdk, EthEureka},
Expand Down Expand Up @@ -257,7 +256,7 @@ where
tracing::debug!("Ack messages: #{}", ack_msgs.len());

let update_msgs = if self.mock {
inject_mock_proofs(&mut recv_msgs, &mut ack_msgs, &mut timeout_msgs);
cosmos::inject_mock_proofs(&mut recv_msgs, &mut ack_msgs, &mut timeout_msgs);
vec![]
} else {
let ethereum_client_state = self
Expand Down

0 comments on commit c8af561

Please sign in to comment.