Skip to content

Commit c27efaf

Browse files
committed
fix spellcheck
1 parent 75eaf71 commit c27efaf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/message_pool/nonce_tracker.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ use tracing::{error, warn};
1414

1515
/// Serializes nonce assignment globally and persists the next expected nonce
1616
/// per address. The global mutex prevents concurrent nonce assignment across
17-
/// all senders, while persistence ensures in-flight nonces survive restarts.
17+
/// all senders, while persistence ensures in-flight nonce's survive restarts.
1818
///
19-
/// Nonces are persisted at `/mpool/nonces/{addr}` in the [`SettingsStore`]. On
19+
/// Nonce's are persisted at `/mpool/nonces/{addr}` in the [`SettingsStore`]. On
2020
/// restart, [`next_nonce`](Self::next_nonce) returns
21-
/// `max(mpool_nonce, persisted_nonce)` so that in-flight nonces are not reused.
22-
/// Nonces are only persisted **after** a successful push; if signing or pushing
21+
/// `max(mpool_nonce, persisted_nonce)` so that in-flight nonce's are not reused.
22+
/// Nonce's are only persisted **after** a successful push; if signing or pushing
2323
/// fails the nonce is not consumed.
2424
///
2525
/// See also [`MpoolLocker`](super::MpoolLocker), the outer per-sender lock.

0 commit comments

Comments
 (0)