aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/dbx/mintages.go
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2025-08-07 14:44:10 +0200
committerThomas Voss <mail@thomasvoss.com> 2025-08-07 14:44:24 +0200
commit33e94090b10c67ef036803dd14d47af749a5767a (patch)
treecdee04d71f988dea4b98f0dcd927f0e735fd4518 /src/dbx/mintages.go
parent3f064cd622d7dd1c74a506eee0766e80a869a94c (diff)
More big improvements to mintage tablesHEADmaster
Diffstat (limited to 'src/dbx/mintages.go')
-rw-r--r--src/dbx/mintages.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dbx/mintages.go b/src/dbx/mintages.go
index c612a92..2223eff 100644
--- a/src/dbx/mintages.go
+++ b/src/dbx/mintages.go
@@ -100,8 +100,8 @@ func GetMintagesByYear(year int, typ MintageType) (YearMintageData, error) {
loop:
msr := MSYearRow{
- Country: x.Country,
- Mintmark: x.Mintmark,
+ Country: x.Country,
+ Mintmark: x.Mintmark,
}
i := denomToIdx(x.Denomination)
msr.Mintages[i] = x.Mintage
@@ -164,8 +164,8 @@ func GetMintagesByCountry(country string, typ MintageType) (CountryMintageData,
loop:
msr := MSCountryRow{
- Year: x.Year,
- Mintmark: x.Mintmark,
+ Year: x.Year,
+ Mintmark: x.Mintmark,
}
i := denomToIdx(x.Denomination)
msr.Mintages[i] = x.Mintage