Skip to content

Commit

Permalink
fix(sdk): clientMessage type
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcosNicolau committed Dec 4, 2024
1 parent 46079ae commit 0d6e3ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion batcher/aligned-sdk/src/sdk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ pub async fn get_first_nonce_in_queue_from_batcher(
})
.await?;

let msg = ClientMessage::GetNonceForAddress(address);
let msg = ClientMessage::GetFirstNonceInQueueForAddress(address);

let msg_bin = cbor_serialize(&msg).map_err(|_| {
GetFirstNonceFromQueueError::SerializationError("Failed to serialize msg".to_string())
Expand Down

0 comments on commit 0d6e3ea

Please sign in to comment.