Commit 31e44c2a authored by Maran's avatar Maran

Change shorthands

parent f5d44147
...@@ -10,9 +10,9 @@ var ( ...@@ -10,9 +10,9 @@ var (
Ether = BigPow(10, 18) Ether = BigPow(10, 18)
Finney = BigPow(10, 15) Finney = BigPow(10, 15)
Szabo = BigPow(10, 12) Szabo = BigPow(10, 12)
Vita = BigPow(10, 9) Shannon = BigPow(10, 9)
Turing = BigPow(10, 6) Babbage = BigPow(10, 6)
Eins = BigPow(10, 3) Ada = BigPow(10, 3)
Wei = big.NewInt(1) Wei = big.NewInt(1)
) )
...@@ -27,12 +27,12 @@ func CurrencyToString(num *big.Int) string { ...@@ -27,12 +27,12 @@ func CurrencyToString(num *big.Int) string {
return fmt.Sprintf("%v Finney", new(big.Int).Div(num, Finney)) return fmt.Sprintf("%v Finney", new(big.Int).Div(num, Finney))
case num.Cmp(Szabo) >= 0: case num.Cmp(Szabo) >= 0:
return fmt.Sprintf("%v Szabo", new(big.Int).Div(num, Szabo)) return fmt.Sprintf("%v Szabo", new(big.Int).Div(num, Szabo))
case num.Cmp(Vita) >= 0: case num.Cmp(Shannon) >= 0:
return fmt.Sprintf("%v Vita", new(big.Int).Div(num, Vita)) return fmt.Sprintf("%v Shannon", new(big.Int).Div(num, Shannon))
case num.Cmp(Turing) >= 0: case num.Cmp(Babbage) >= 0:
return fmt.Sprintf("%v Turing", new(big.Int).Div(num, Turing)) return fmt.Sprintf("%v Babbage", new(big.Int).Div(num, Babbage))
case num.Cmp(Eins) >= 0: case num.Cmp(Ada) >= 0:
return fmt.Sprintf("%v Eins", new(big.Int).Div(num, Eins)) return fmt.Sprintf("%v Ada", new(big.Int).Div(num, Ada))
} }
return fmt.Sprintf("%v Wei", num) return fmt.Sprintf("%v Wei", num)
......
...@@ -26,15 +26,15 @@ func TestCommon(t *testing.T) { ...@@ -26,15 +26,15 @@ func TestCommon(t *testing.T) {
t.Error("Got", szabo) t.Error("Got", szabo)
} }
if vito != "10 Vita" { if vito != "10 Shannon" {
t.Error("Got", vito) t.Error("Got", vito)
} }
if turing != "10 Turing" { if turing != "10 Babbage" {
t.Error("Got", turing) t.Error("Got", turing)
} }
if eins != "10 Eins" { if eins != "10 Ada" {
t.Error("Got", eins) t.Error("Got", eins)
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment