-
Notifications
You must be signed in to change notification settings - Fork 258
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
VC: Fix VC must not crash if beacon node address could not be resolve…
…d. (#5388) * Fix VC should not crash, if beacon node URL could not be resolved. * Bump chronos. * Update .gitmodules.
- Loading branch information
Showing
7 changed files
with
125 additions
and
23 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
Submodule nim-chronos
updated
11 files
+1 −1 | README.md | |
+85 −0 | chronos/apps/http/httpclient.nim | |
+42 −0 | chronos/apps/http/httpcommon.nim | |
+12 −6 | chronos/asyncfutures2.nim | |
+1 −1 | chronos/asyncloop.nim | |
+1 −1 | chronos/asyncmacro2.nim | |
+14 −3 | chronos/futures.nim | |
+3 −3 | chronos/unittest2/asynctests.nim | |
+2 −0 | tests/testfut.nim | |
+83 −0 | tests/testhttpclient.nim | |
+61 −44 | tests/testserver.nim |
Submodule nim-presto
updated
7 files
+1 −0 | presto.nimble | |
+176 −16 | presto/client.nim | |
+12 −0 | presto/common.nim | |
+37 −9 | presto/route.nim | |
+132 −23 | presto/serverprivate.nim | |
+64 −0 | tests/testclient.nim | |
+36 −4 | tests/testserver.nim |