aboutsummaryrefslogtreecommitdiffstats
path: root/trie/encoding_test.go
diff options
context:
space:
mode:
authorEthan Buchman <ethan@coinculture.info>2015-08-06 15:11:10 +0800
committerEthan Buchman <ethan@coinculture.info>2015-08-06 15:17:59 +0800
commitc1d516546d221de898ddeb12a77477d992d125df (patch)
tree9f2208127d4325546ac524b9e56ae8cd525abb92 /trie/encoding_test.go
parent98100f472c3bee473ea32044e47e82835b9cfadb (diff)
downloaddexon-c1d516546d221de898ddeb12a77477d992d125df.tar
dexon-c1d516546d221de898ddeb12a77477d992d125df.tar.gz
dexon-c1d516546d221de898ddeb12a77477d992d125df.tar.bz2
dexon-c1d516546d221de898ddeb12a77477d992d125df.tar.lz
dexon-c1d516546d221de898ddeb12a77477d992d125df.tar.xz
dexon-c1d516546d221de898ddeb12a77477d992d125df.tar.zst
dexon-c1d516546d221de898ddeb12a77477d992d125df.zip
faster hex-prefix codec and string -> []byte
Diffstat (limited to 'trie/encoding_test.go')
-rw-r--r--trie/encoding_test.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/trie/encoding_test.go b/trie/encoding_test.go
index e52c6ba8d..faaa7f583 100644
--- a/trie/encoding_test.go
+++ b/trie/encoding_test.go
@@ -48,28 +48,28 @@ func (s *TrieEncodingSuite) TestCompactEncode(c *checker.C) {
func (s *TrieEncodingSuite) TestCompactHexDecode(c *checker.C) {
exp := []byte{7, 6, 6, 5, 7, 2, 6, 2, 16}
- res := CompactHexDecode("verb")
+ res := CompactHexDecode([]byte("verb"))
c.Assert(res, checker.DeepEquals, exp)
}
func (s *TrieEncodingSuite) TestCompactDecode(c *checker.C) {
// odd compact decode
exp := []byte{1, 2, 3, 4, 5}
- res := CompactDecode("\x11\x23\x45")
+ res := CompactDecode([]byte("\x11\x23\x45"))
c.Assert(res, checker.DeepEquals, exp)
// even compact decode
exp = []byte{0, 1, 2, 3, 4, 5}
- res = CompactDecode("\x00\x01\x23\x45")
+ res = CompactDecode([]byte("\x00\x01\x23\x45"))
c.Assert(res, checker.DeepEquals, exp)
// even terminated compact decode
exp = []byte{0, 15, 1, 12, 11, 8 /*term*/, 16}
- res = CompactDecode("\x20\x0f\x1c\xb8")
+ res = CompactDecode([]byte("\x20\x0f\x1c\xb8"))
c.Assert(res, checker.DeepEquals, exp)
// even terminated compact decode
exp = []byte{15, 1, 12, 11, 8 /*term*/, 16}
- res = CompactDecode("\x3f\x1c\xb8")
+ res = CompactDecode([]byte("\x3f\x1c\xb8"))
c.Assert(res, checker.DeepEquals, exp)
}