Skip to content

Commit

Permalink
Fix: Compilation error due to erroneous letter
Browse files Browse the repository at this point in the history
  • Loading branch information
henriqueaklein committed Jul 19, 2023
1 parent 1e01482 commit b4da808
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ std::shared_ptr<SuperGeniusNode> make(const base::Buffer& key_nibbles,
//TODO - Improve this cases and check if this is even relevant
static const std::vector<Case> CASES = {
{make<LeafNode>("010203"_hex2buf, "abcdef"_hex2buf), "43"_hex2buf},
{make<LeafNode>(base::Buffer(64, 0xffu), base::Buffer(64, 0xfeuF)),
{make<LeafNode>(base::Buffer(64, 0xffu), base::Buffer(64, 0xfeu)),
"7f01"_hex2buf}};

INSTANTIATE_TEST_CASE_P(SuperGeniusCodec, NodeEncodingTest, ValuesIn(CASES));

0 comments on commit b4da808

Please sign in to comment.