File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments