aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil
diff options
context:
space:
mode:
Diffstat (limited to 'ethutil')
-rw-r--r--ethutil/size.go15
-rw-r--r--ethutil/size_test.go12
2 files changed, 27 insertions, 0 deletions
diff --git a/ethutil/size.go b/ethutil/size.go
new file mode 100644
index 000000000..b4426465e
--- /dev/null
+++ b/ethutil/size.go
@@ -0,0 +1,15 @@
+package ethutil
+
+import "fmt"
+
+type StorageSize float64
+
+func (self StorageSize) String() string {
+ if self > 1000000 {
+ return fmt.Sprintf("%.2f mB", self/1000000)
+ } else if self > 1000 {
+ return fmt.Sprintf("%.2f kB", self/1000)
+ } else {
+ return fmt.Sprintf("%.2f B", self)
+ }
+}
diff --git a/ethutil/size_test.go b/ethutil/size_test.go
new file mode 100644
index 000000000..82aa1c653
--- /dev/null
+++ b/ethutil/size_test.go
@@ -0,0 +1,12 @@
+package ethutil
+
+import (
+ "fmt"
+ "testing"
+)
+
+func TestSize(t *testing.T) {
+ fmt.Println(StorageSize(2381273))
+ fmt.Println(StorageSize(2192))
+ fmt.Println(StorageSize(12))
+}
8dd85cd85094e6a9ae8552'>If using XF86 4, add a run dependency on mkfontdir (the standard run depend forPete Fritchman2001-12-301-0/+4 * change master siteYing-Chieh Liao2001-12-271-2/+1 * Add a new font size for this font collectionMichael C . Wu2001-08-184-3/+6 * upgrade to 1.2Ying-Chieh Liao2001-08-184-7/+14 * Its main distribution site has been restored. Leaving theClive Lin2001-07-291-1/+2 * Temporarily point the MASTER_SITE to another box. Author's siteClive Lin2001-07-281-1/+1 * Update to 1.1Clive Lin2001-07-263-3/+4 * o Use USE_X_PREFIX knob.Clive Lin2001-06-241-1/+2