mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 23:57:23 +00:00
12 lines
176 B
Go
12 lines
176 B
Go
package ethutil
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestSize(t *testing.T) {
|
|
fmt.Println(StorageSize(2381273))
|
|
fmt.Println(StorageSize(2192))
|
|
fmt.Println(StorageSize(12))
|
|
}
|