-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Description
ord wallet --name <NAME> balance
gives an error:
error: invalid charm `palindrome` at line 1 column 99
Guess that palindrome
should be added here:
ord/crates/ordinals/src/charm.rs
Lines 110 to 128 in 5ac126d
fn from_str(s: &str) -> Result<Self, Self::Err> { | |
Ok(match s { | |
"burned" => Self::Burned, | |
"coin" => Self::Coin, | |
"cursed" => Self::Cursed, | |
"epic" => Self::Epic, | |
"legendary" => Self::Legendary, | |
"lost" => Self::Lost, | |
"mythic" => Self::Mythic, | |
"nineball" => Self::Nineball, | |
"rare" => Self::Rare, | |
"reinscription" => Self::Reinscription, | |
"unbound" => Self::Unbound, | |
"uncommon" => Self::Uncommon, | |
"vindicated" => Self::Vindicated, | |
_ => return Err(format!("invalid charm `{s}`")), | |
}) | |
} | |
} |
Metadata
Metadata
Assignees
Labels
No labels