File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
relayer/crates/starknet-integration-tests/src/tests Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -238,13 +238,13 @@ fn test_starknet_light_client() -> Result<(), Error> {
238
238
)
239
239
. await ?;
240
240
241
- let client_height = client_state. client_state . latest_height . revision_height ( ) ;
241
+ let client_height = client_state. client_state . latest_height ;
242
242
243
243
let consensus_state = cosmos_chain
244
244
. query_consensus_state (
245
245
PhantomData :: < StarknetChain > ,
246
246
& cosmos_client_id,
247
- & client_height,
247
+ & client_height. revision_height ( ) ,
248
248
& cosmos_chain. query_chain_height ( ) . await ?,
249
249
)
250
250
. await ?;
@@ -278,8 +278,8 @@ fn test_starknet_light_client() -> Result<(), Error> {
278
278
. await ?;
279
279
280
280
info ! (
281
- "initial Cosmos consensus state height {} and root: {:?} on Starknet" ,
282
- client_state. latest_height. revision_height , consensus_state. root
281
+ "initial Cosmos consensus state height {:? } and root: {:?} on Starknet" ,
282
+ client_state. latest_height, consensus_state. root
283
283
) ;
284
284
}
285
285
You can’t perform that action at this time.
0 commit comments