diff options
author | obscuren <geffobscura@gmail.com> | 2014-02-15 19:40:19 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-02-15 19:40:19 +0800 |
commit | 9bcb3d22168f5f02cd32ff23df60239156ddc899 (patch) | |
tree | 89a7d49c66aaa2911d272b89110a4a2473639bef | |
parent | 424b0b8bacaa0893f083888ae8ebc47977bf7edf (diff) | |
download | go-tangerine-9bcb3d22168f5f02cd32ff23df60239156ddc899.tar go-tangerine-9bcb3d22168f5f02cd32ff23df60239156ddc899.tar.gz go-tangerine-9bcb3d22168f5f02cd32ff23df60239156ddc899.tar.bz2 go-tangerine-9bcb3d22168f5f02cd32ff23df60239156ddc899.tar.lz go-tangerine-9bcb3d22168f5f02cd32ff23df60239156ddc899.tar.xz go-tangerine-9bcb3d22168f5f02cd32ff23df60239156ddc899.tar.zst go-tangerine-9bcb3d22168f5f02cd32ff23df60239156ddc899.zip |
Fixed test
-rw-r--r-- | ethutil/rlp_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethutil/rlp_test.go b/ethutil/rlp_test.go index 32bcbdce1..2bddeec8f 100644 --- a/ethutil/rlp_test.go +++ b/ethutil/rlp_test.go @@ -10,7 +10,7 @@ import ( ) func TestRlpValueEncoding(t *testing.T) { - val := EmptyRlpValue() + val := EmptyValue() val.AppendList().Append(1).Append(2).Append(3) val.Append("4").AppendList().Append(5) |