Skip to content

Commit 89b9d84

Browse files
committed
fix: get_mut() --> get()
1 parent 0b0f8a1 commit 89b9d84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stackslib/src/net/inv/nakamoto.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ impl InvGenerator {
218218
};
219219

220220
// this tip has a known table
221-
if let Some(loaded_tenure_info) = tenure_infos.get_mut(tenure_id_consensus_hash) {
221+
if let Some(loaded_tenure_info) = tenure_infos.get(tenure_id_consensus_hash) {
222222
// we've loaded this tenure info before for this tip
223223
return Ok(loaded_tenure_info.clone());
224224
} else {

0 commit comments

Comments
 (0)