We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2e4ba5 commit ef23ac1Copy full SHA for ef23ac1
ibc-testkit/src/fixtures/core/context.rs
@@ -22,7 +22,7 @@ where
22
H: TestHost,
23
{
24
#[builder(default)]
25
- pub host: H,
+ host: H,
26
27
#[builder(default = Duration::from_secs(DEFAULT_BLOCK_TIME_SECS))]
28
block_time: Duration,
@@ -58,12 +58,12 @@ where
58
59
let mut context = Self {
60
main_store: Default::default(),
61
+ host: params.host,
62
ibc_store: MockIbcStore::new(
63
params.latest_height.revision_number(),
64
Default::default(),
65
),
66
ibc_router: MockRouter::new_with_transfer(),
- host: params.host,
67
};
68
69
// store is a height 0; no block
0 commit comments