blob: 82aa1c65335fd48534f84bcf6d2c40e11498f4c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package ethutil
import (
"fmt"
"testing"
)
func TestSize(t *testing.T) {
fmt.Println(StorageSize(2381273))
fmt.Println(StorageSize(2192))
fmt.Println(StorageSize(12))
}
|