Skip to content

Commit

Permalink
Merge branch 'move-functions-to-reader' into add-split-functions
Browse files Browse the repository at this point in the history
  • Loading branch information
MegaRedHand committed Jan 7, 2025
2 parents ae92a64 + 13f1d06 commit 6b4db9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions crates/chainio/clients/avsregistry/src/writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ impl AvsRegistryChainWriter {
.await
.map_err(AvsRegistryError::AlloyContractError)?;

info!(tx_hash = ?tx,"succesfully updated stakes of operator subset for all quorums" );
info!(tx_hash = ?tx,"successfully updated stakes of operator subset for all quorums" );
Ok(*tx.tx_hash())
}

Expand Down Expand Up @@ -308,7 +308,7 @@ impl AvsRegistryChainWriter {
.send()
.await
.map_err(AvsRegistryError::AlloyContractError)?;
info!(tx_hash = ?tx,"succesfully deregistered operator with the AVS's registry coordinator" );
info!(tx_hash = ?tx,"successfully deregistered operator with the AVS's registry coordinator" );
Ok(*tx.tx_hash())
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ impl OperatorInfoServiceInMemory {
/// # Returns
///
/// A tuple of 2 elements
/// [`Self`] and [`UnboundedReceiver<OperatorInfoServiceError>`] if successfull , else [`OperatorInfoServiceError`]
/// [`Self`] and [`UnboundedReceiver<OperatorInfoServiceError>`] if successful , else [`OperatorInfoServiceError`]
pub async fn new(
logger: SharedLogger,
avs_registry_chain_reader: AvsRegistryChainReader,
Expand Down

0 comments on commit 6b4db9f

Please sign in to comment.