Skip to content

Commit

Permalink
fix seed check
Browse files Browse the repository at this point in the history
  • Loading branch information
suerlych committed Dec 4, 2024
1 parent 8894508 commit f4ceb21
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ private void AssertSeedSymbolPattern(string symbol)

foreach (var c in symbolPartition[1])
{
Assert(c >= 1 && c <= 9, "Invalid seed symbol suffix.");
Assert(c >= '1' && c <= '9', "Invalid seed symbol suffix.");
}
}

Expand Down

0 comments on commit f4ceb21

Please sign in to comment.