Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

token-cli: Add unreachable pattern for future change #7446

Merged
merged 1 commit into from
Nov 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions token/cli/src/output.rs
Original file line number Diff line number Diff line change
Expand Up @@ -991,6 +991,9 @@ fn display_ui_extension(
" Unparseable extension:",
"Consider upgrading to a newer version of spl-token",
),
// remove when upgrading v2.1.1+ and match on ConfidentialMintBurn
#[allow(unreachable_patterns)]
_ => Ok(()),
}
}

Expand Down
Loading