From a49faa48e6a2843ac1ca1ed7f60df0e40fc60f4b Mon Sep 17 00:00:00 2001 From: Aleksandr Bezobchuk Date: Wed, 6 Oct 2021 09:07:32 -0400 Subject: [PATCH] init commit --- orchestrator/cosmos_gravity/src/send.rs | 2 -- orchestrator/relayer/src/valset_relaying.rs | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/orchestrator/cosmos_gravity/src/send.rs b/orchestrator/cosmos_gravity/src/send.rs index e59e24427..00073fb7a 100644 --- a/orchestrator/cosmos_gravity/src/send.rs +++ b/orchestrator/cosmos_gravity/src/send.rs @@ -179,8 +179,6 @@ pub async fn send_main_loop( msg_batch_size: usize, ) { while let Some(messages) = rx.recv().await { - // TODO: Consider making the chunk size configurable in the cosmos - // configuration. for msg_chunk in messages.chunks(msg_batch_size) { match send_messages( contact, diff --git a/orchestrator/relayer/src/valset_relaying.rs b/orchestrator/relayer/src/valset_relaying.rs index 68a19bade..258b237be 100644 --- a/orchestrator/relayer/src/valset_relaying.rs +++ b/orchestrator/relayer/src/valset_relaying.rs @@ -62,7 +62,7 @@ pub async fn relay_valsets( assert_eq!(cosmos_valset.nonce, latest_nonce); let confirms = get_all_valset_confirms(grpc_client, latest_nonce).await; if let Ok(confirms) = confirms { - info!( + debug!( "Considering cosmos_valset {:?} confirms {:?}", cosmos_valset, confirms );