aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/common.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2014-11-12 03:37:18 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2014-11-12 03:37:18 +0800
commit1d866b5e579e06d00ab63cf8899a47e08b95b232 (patch)
tree022955dec7ef6527a6f30d3adb82ce4671e111a2 /ethutil/common.go
parentf59a3b67f69b26f969084e0de165435e80bd8e12 (diff)
parent5c5df21e3d8768481c2bc1b6e9475099590e10be (diff)
downloaddexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar
dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar.gz
dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar.bz2
dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar.lz
dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar.xz
dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar.zst
dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.zip
Merge pull request #1 from tgerring/tests
Initial tests based on check framework
Diffstat (limited to 'ethutil/common.go')
-rw-r--r--ethutil/common.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/ethutil/common.go b/ethutil/common.go
index e60f237cf..0a29cac6c 100644
--- a/ethutil/common.go
+++ b/ethutil/common.go
@@ -66,6 +66,7 @@ func CurrencyToString(num *big.Int) string {
denom = "Ada"
}
+ // TODO add comment clarifying expected behavior
if len(fin.String()) > 5 {
return fmt.Sprintf("%sE%d %s", fin.String()[0:5], len(fin.String())-5, denom)
}