Skip to content

Commit

Permalink
nits
Browse files Browse the repository at this point in the history
  • Loading branch information
rnbguy committed Mar 29, 2024
1 parent d2e4ba5 commit ef23ac1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ibc-testkit/src/fixtures/core/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ where
H: TestHost,
{
#[builder(default)]
pub host: H,
host: H,

#[builder(default = Duration::from_secs(DEFAULT_BLOCK_TIME_SECS))]
block_time: Duration,
Expand Down Expand Up @@ -58,12 +58,12 @@ where

let mut context = Self {
main_store: Default::default(),
host: params.host,
ibc_store: MockIbcStore::new(
params.latest_height.revision_number(),
Default::default(),
),
ibc_router: MockRouter::new_with_transfer(),
host: params.host,
};

// store is a height 0; no block
Expand Down

0 comments on commit ef23ac1

Please sign in to comment.