-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bearssl: use master branch again * chronos: less Option, better contenttype handling * eth, presto: less imports * stew: typo * web3: tighter `Quantity` parsing rules (see #3850 and subsequently status-im/nim-web3#55)
- Loading branch information
1 parent
776f092
commit 1538dea
Showing
6 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
Submodule nim-chronos
updated
20 files
+10 −3 | .github/workflows/ci.yml | |
+65 −25 | chronos/apps/http/httpserver.nim | |
+4 −1 | chronos/apps/http/httptable.nim | |
+1 −1 | chronos/asyncfutures2.nim | |
+5 −2 | chronos/asyncloop.nim | |
+4 −1 | chronos/asyncsync.nim | |
+4 −1 | chronos/debugutils.nim | |
+4 −1 | chronos/handles.nim | |
+4 −1 | chronos/ioselects/ioselectors_epoll.nim | |
+4 −1 | chronos/sendfile.nim | |
+4 −1 | chronos/srcloc.nim | |
+4 −1 | chronos/streams/asyncstream.nim | |
+5 −5 | chronos/streams/boundstream.nim | |
+4 −1 | chronos/timer.nim | |
+4 −1 | chronos/transports/common.nim | |
+4 −1 | chronos/transports/datagram.nim | |
+4 −1 | chronos/transports/ipnet.nim | |
+4 −1 | chronos/transports/osnet.nim | |
+4 −1 | chronos/transports/stream.nim | |
+18 −9 | tests/testhttpserver.nim |
Submodule nim-eth
updated
9 files
+7 −0 | .github/workflows/ci.yml | |
+4 −1 | eth/common/chaindb.nim | |
+3 −0 | eth/common/eth_types.nim | |
+2 −1 | eth/p2p/discoveryv5/encoding.nim | |
+1 −1 | eth/p2p/discoveryv5/enr.nim | |
+4 −1 | eth/p2p/discoveryv5/hkdf.nim | |
+1 −1 | eth/p2p/discoveryv5/node.nim | |
+0 −2 | eth/p2p/discoveryv5/protocol.nim | |
+1 −1 | eth/p2p/rlpx.nim |
Submodule nim-presto
updated
7 files
+3 −3 | presto/common.nim | |
+4 −4 | presto/segpath.nim | |
+2 −1 | presto/servercommon.nim | |
+80 −80 | tests/testclient.nim | |
+1 −1 | tests/testroute.nim | |
+12 −12 | tests/testsecureserver.nim | |
+12 −12 | tests/testserver.nim |
Submodule nim-web3
updated
21 files
+2 −6 | .github/workflows/ci.yml | |
+6 −0 | nim.cfg | |
+4 −3 | tests/all_tests.nim | |
+5 −0 | tests/nim.cfg | |
+4 −5 | tests/test.nim | |
+1 −1 | tests/test_deposit_contract.nim | |
+5 −0 | tests/test_ethhexstrings.nim | |
+1 −1 | tests/test_logs.nim | |
+43 −0 | tests/test_quantity.nim | |
+1 −1 | tests/test_utils.nim | |
+3 −3 | web3.nim | |
+8 −1 | web3.nimble | |
+2 −3 | web3/confutils_defs.nim | |
+96 −37 | web3/conversions.nim | |
+2 −2 | web3/encoding.nim | |
+0 −1 | web3/engine_api.nim | |
+9 −10 | web3/engine_api_types.nim | |
+5 −0 | web3/ethcallsigs.nim | |
+15 −14 | web3/ethhexstrings.nim | |
+26 −5 | web3/ethtypes.nim | |
+2 −2 | web3/transaction_signing.nim |