Skip to content

Commit b344d34

Browse files
committed
BUGFIX: Switch IOTA and MIOTA in alt symbols map.
1 parent 8f05b61 commit b344d34

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

fetcher_test_data.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var httpMocks = map[string]string{
1212
"BCHBTC": {"ask": "0.5","0.5": "0.5","last": "0.5"},
1313
"NOTBTC": {"ask": "121","bid": "122","last": "123"},
1414
"SOILBTC": {"ask": "0.0012345","bid": "0.0012345","last": "0.0012345"},
15-
"MIOTABTC": {"ask": "0.00102","bid": "0.00102","last": "0.00102"},
15+
"IOTABTC": {"ask": "0.00102","bid": "0.00102","last": "0.00102"},
1616
"ACCBTC": {"ask": "0.002225","bid": "0.002225","last": "0.002225"},
1717
"ZEROBTC": {"ask": "0","0": "0","last": "0"},
1818
"NOTANALTCOINRATE": {}
@@ -92,7 +92,7 @@ var testExpectedFetchData = regexp.MustCompile("\\s").ReplaceAllString(`{
9292
"bid": 1,
9393
"last": 1
9494
},
95-
"IOTA": {
95+
"MIOTA": {
9696
"ask": 980.39215,
9797
"bid": 980.39215,
9898
"last": 980.39215

normalization.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
// AltSymbolsToCanonicalSymbols maps symbols that may be used in some sources to
99
// represent coins that we use a different symbol for
1010
var AltSymbolsToCanonicalSymbols = map[string]string{
11-
"MIOTA": "IOTA",
11+
"IOTA": "MIOTA",
1212
}
1313

1414
// PinnedSymbolsToIDs maps symbols that may be used by multiple coins to a

0 commit comments

Comments
 (0)