mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-05-05 07:43:09 +00:00
fix: downgrades of logs
This commit is contained in:
parent
3c8e81c11c
commit
5eb4e0af1f
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@ -186,7 +186,7 @@ jobs:
|
|||||||
|
|
||||||
valid-proof-test:
|
valid-proof-test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 90
|
timeout-minutes: 60
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v5
|
||||||
with:
|
with:
|
||||||
|
|||||||
@ -190,12 +190,6 @@ pub struct WitnessSet {
|
|||||||
pub proof: Proof,
|
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)]
|
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize, JsonSchema)]
|
||||||
pub struct Proof(
|
pub struct Proof(
|
||||||
#[serde(with = "base64")]
|
#[serde(with = "base64")]
|
||||||
|
|||||||
@ -28,7 +28,7 @@ pub trait BlockSettlementClientTrait: Clone {
|
|||||||
/// Create and sign a transaction for inscribing data.
|
/// Create and sign a transaction for inscribing data.
|
||||||
fn create_inscribe_tx(&self, block: &Block) -> Result<(SignedMantleTx, MsgId)> {
|
fn create_inscribe_tx(&self, block: &Block) -> Result<(SignedMantleTx, MsgId)> {
|
||||||
let inscription_data = borsh::to_vec(block)?;
|
let inscription_data = borsh::to_vec(block)?;
|
||||||
log::info!(
|
log::debug!(
|
||||||
"The size of the block {} is {} bytes",
|
"The size of the block {} is {} bytes",
|
||||||
block.header.block_id,
|
block.header.block_id,
|
||||||
inscription_data.len()
|
inscription_data.len()
|
||||||
@ -104,7 +104,7 @@ impl BlockSettlementClientTrait for BlockSettlementClient {
|
|||||||
.await
|
.await
|
||||||
.context("Failed to post transaction to Bedrock")?;
|
.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(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|||||||
@ -183,7 +183,7 @@ async fn retry_pending_blocks(seq_core: &Arc<Mutex<SequencerCore>>) -> Result<()
|
|||||||
};
|
};
|
||||||
|
|
||||||
for block in pending_blocks.iter() {
|
for block in pending_blocks.iter() {
|
||||||
info!(
|
debug!(
|
||||||
"Resubmitting pending block with id {}",
|
"Resubmitting pending block with id {}",
|
||||||
block.header.block_id
|
block.header.block_id
|
||||||
);
|
);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user