Fix block size output #613

This commit is contained in:
Taylor Gerring
2015-04-01 15:44:09 +02:00
parent 6e8ff578f1
commit ac03ff6f05
3 changed files with 7 additions and 2 deletions

View File

@ -17,6 +17,10 @@ func (self StorageSize) String() string {
}
}
func (self StorageSize) Int64() int64 {
return int64(self)
}
// The different number of units
var (
Douglas = BigPow(10, 42)