-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement SSZ responses in the light client REST APIs
Other changes: * More DRY encoding of the Nimbus content type preference. * Switch if/elif/else to exhaustive case statements to guard the code better from future changes.
- Loading branch information
Showing
7 changed files
with
104 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule nim-stew
updated
31 files
+2 −1 | stew.nimble | |
+58 −0 | stew/enums.nim | |
+7 −37 | stew/objects.nim | |
+1 −0 | tests/all_tests.nim | |
+2 −1 | tests/ranges/tbitranges.nim | |
+2 −1 | tests/ranges/tstackarrays.nim | |
+2 −1 | tests/ranges/ttypedranges.nim | |
+1 −1 | tests/test_arrayops.nim | |
+1 −1 | tests/test_assign2.nim | |
+3 −2 | tests/test_base10.nim | |
+3 −2 | tests/test_base32.nim | |
+3 −2 | tests/test_base58.nim | |
+3 −2 | tests/test_base64.nim | |
+3 −3 | tests/test_bitops2.nim | |
+2 −1 | tests/test_bitseqs.nim | |
+1 −1 | tests/test_byteutils.nim | |
+3 −2 | tests/test_ctops.nim | |
+3 −3 | tests/test_endians2.nim | |
+144 −0 | tests/test_enums.nim | |
+3 −2 | tests/test_io2.nim | |
+2 −2 | tests/test_keyed_queue.nim | |
+2 −1 | tests/test_leb128.nim | |
+1 −2 | tests/test_macros.nim | |
+2 −120 | tests/test_objects.nim | |
+3 −3 | tests/test_ptrops.nim | |
+1 −1 | tests/test_sequtils2.nim | |
+1 −1 | tests/test_sets.nim | |
+2 −2 | tests/test_sorted_set.nim | |
+1 −1 | tests/test_templateutils.nim | |
+2 −1 | tests/test_varints.nim | |
+3 −2 | tests/test_winacl.nim |