diff options
-rw-r--r-- | src/dbx/mintages.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/dbx/mintages.go b/src/dbx/mintages.go index d78e59c..5b226bd 100644 --- a/src/dbx/mintages.go +++ b/src/dbx/mintages.go @@ -73,8 +73,9 @@ func NewMintageType(s string) MintageType { case "proof": return TypeProof } - /* TODO: Handle this */ - panic("TODO") + /* We can get here if the user sends a request manually, so just + fallback to this */ + return TypeCirc } func GetMintages(country string, typ MintageType) (MintageData, error) { |