-
Notifications
You must be signed in to change notification settings - Fork 261
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Been a while since we updated * fix Defect for 1.6 in kvstore * bump nim-eth
- Loading branch information
1 parent
8f269c9
commit 612bb08
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
Submodule nim-chronos
updated
29 files
+62 −0 | .github/workflows/doc.yml | |
+63 −2 | README.md | |
+5 −5 | chronos/apps/http/httpclient.nim | |
+2 −48 | chronos/apps/http/httpcommon.nim | |
+0 −1 | chronos/apps/http/multipart.nim | |
+1 −1 | chronos/asyncfutures2.nim | |
+273 −216 | chronos/asyncloop.nim | |
+158 −146 | chronos/asyncmacro2.nim | |
+2 −2 | chronos/debugutils.nim | |
+139 −126 | chronos/handles.nim | |
+4 −4 | chronos/ioselects/ioselectors_epoll.nim | |
+1,532 −0 | chronos/osdefs.nim | |
+341 −0 | chronos/osutils.nim | |
+90 −92 | chronos/streams/asyncstream.nim | |
+77 −36 | chronos/streams/tlsstream.nim | |
+11 −42 | chronos/timer.nim | |
+31 −67 | chronos/transports/common.nim | |
+190 −216 | chronos/transports/datagram.nim | |
+690 −354 | chronos/transports/ipnet.nim | |
+51 −472 | chronos/transports/osnet.nim | |
+574 −560 | chronos/transports/stream.nim | |
+0 −50 | nimble.lock | |
+150 −0 | tests/testasyncstream.nim | |
+483 −301 | tests/testfut.nim | |
+2 −0 | tests/testhttpclient.nim | |
+18 −0 | tests/testmacro.nim | |
+209 −18 | tests/testnet.nim | |
+13 −11 | tests/testratelimit.nim | |
+4 −5 | tests/teststream.nim |
Submodule nim-eth
updated
13 files
+2 −2 | .github/workflows/ci.yml | |
+1 −1 | eth.nimble | |
+1 −1 | eth/common/eth_types_rlp.nim | |
+15 −10 | eth/db/kvstore.nim | |
+22 −21 | eth/db/kvstore_sqlite3.nim | |
+6 −4 | eth/net/nat.nim | |
+6 −10 | eth/net/utils.nim | |
+39 −31 | eth/p2p/discoveryv5/nodes_verification.nim | |
+1 −1 | tests/db/test_kvstore_sqlite3.nim | |
+74 −11 | tests/p2p/test_discoveryv5.nim | |
+1 −1 | tests/rlp/test_api_usage.nim | |
+9 −9 | tools/dcli.nim | |
+0 −0 | tools/dcli.nim.cfg |
Submodule nim-sqlite3-abi
updated
6 files
+1 −1 | README.md | |
+1 −1 | sqlite3_abi.nimble | |
+25,132 −13,270 | sqlite3_abi/sqlite3.c | |
+762 −105 | sqlite3_abi/sqlite3.h | |
+1,028 −560 | sqlite3_abi/sqlite3_gen.nim | |
+5 −4 | update.sh |