fix: downgrades of logs

This commit is contained in:
Pravdyvy 2026-02-26 19:18:41 +02:00
parent 3c8e81c11c
commit 5eb4e0af1f
4 changed files with 4 additions and 10 deletions

View File

@ -186,7 +186,7 @@ jobs:
valid-proof-test:
runs-on: ubuntu-latest
timeout-minutes: 90
timeout-minutes: 60
steps:
- uses: actions/checkout@v5
with:

View File

@ -190,12 +190,6 @@ pub struct WitnessSet {
pub proof: Proof,
}
impl WitnessSet {
pub fn signatures_and_public_keys(&self) -> &[(Signature, PublicKey)] {
&self.signatures_and_public_keys
}
}
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize, JsonSchema)]
pub struct Proof(
#[serde(with = "base64")]

View File

@ -28,7 +28,7 @@ pub trait BlockSettlementClientTrait: Clone {
/// Create and sign a transaction for inscribing data.
fn create_inscribe_tx(&self, block: &Block) -> Result<(SignedMantleTx, MsgId)> {
let inscription_data = borsh::to_vec(block)?;
log::info!(
log::debug!(
"The size of the block {} is {} bytes",
block.header.block_id,
inscription_data.len()
@ -104,7 +104,7 @@ impl BlockSettlementClientTrait for BlockSettlementClient {
.await
.context("Failed to post transaction to Bedrock")?;
log::info!("Posted block to Bedrock with parent id {parent_id:?} and msg id: {msg_id:?}");
log::debug!("Posted block to Bedrock with parent id {parent_id:?} and msg id: {msg_id:?}");
Ok(())
}

View File

@ -183,7 +183,7 @@ async fn retry_pending_blocks(seq_core: &Arc<Mutex<SequencerCore>>) -> Result<()
};
for block in pending_blocks.iter() {
info!(
debug!(
"Resubmitting pending block with id {}",
block.header.block_id
);