コード例 #1
0
ファイル: MPTReadOnlyDb.cs プロジェクト: krona-project/krona
        public MPTNode Node(UInt256 hash)
        {
            if (hash is null)
            {
                return(null);
            }
            var data = store.Get(hash.ToArray());

            return(MPTNode.Decode(data));
        }
コード例 #2
0
        public void TestDecode()
        {
            var n = new LeafNode
            {
                Value = Encoding.ASCII.GetBytes("hello")
            };
            var code = n.Encode();
            var m    = MPTNode.Decode(code);

            Assert.IsInstanceOfType(m, n.GetType());
        }