deploy: c3d5701b3856d38a77477b099c093c1f3e9684d9

This commit is contained in:
jm-clius 2021-07-22 09:11:42 +00:00
parent 7a8cc517b7
commit 833ec778a6
11 changed files with 28 additions and 4 deletions

10
.gitmodules vendored
View File

@ -120,3 +120,13 @@
url = https://github.com/status-im/nim-unittest2.git
ignore = untracked
branch = master
[submodule "vendor/nim-websock"]
path = vendor/nim-websock
url = https://github.com/status-im/nim-websock.git
ignore = untracked
branch = master
[submodule "vendor/nim-zlib"]
path = vendor/nim-zlib
url = https://github.com/status-im/nim-zlib.git
ignore = untracked
branch = master

View File

@ -4,7 +4,7 @@ import
std/[tables, hashes, sequtils],
chronos, confutils, chronicles, chronicles/topics_registry,
metrics, metrics/chronos_httpserver,
stew/[byteutils, objects],
stew/byteutils,
stew/shims/net as stewNet, json_rpc/rpcserver,
# Waku v1 imports
eth/[keys, p2p], eth/common/utils,

View File

@ -1,3 +1,5 @@
{.push raises: [Defect, CatchableError].}
import
chronicles,
json_rpc/rpcserver,

View File

@ -1,3 +1,5 @@
{.push raises: [Defect].}
import
std/[options,tables],
eth/keys,

View File

@ -1,3 +1,5 @@
{.push raises: [Defect].}
import
std/[options, json],
eth/keys,

View File

@ -1,7 +1,7 @@
{.push raises: [Defect].}
import
std/[tables, strutils],
std/tables,
sqlite3_abi,
stew/[byteutils, results],
./message_store,

View File

@ -1,7 +1,7 @@
{.push raises: [Defect].}
import
std/[tables, sequtils, options],
std/[tables, options],
bearssl,
chronos, chronicles, metrics, stew/results,
libp2p/protocols/pubsub/pubsubpeer,

View File

@ -1,5 +1,7 @@
{.push raises: [Defect].}
import
chronicles, options, chronos, stint,
options, chronos, stint,
web3,
eth/keys

View File

@ -1,5 +1,7 @@
## Types for waku_store protocol.
{.push raises: [Defect].}
# Group by std, external then internal imports
import
# external imports

View File

@ -2,6 +2,8 @@
##
## Used by both message store and store protocol.
{.push raises: [Defect].}
import nimcrypto/hash
type

View File

@ -1,5 +1,7 @@
# Request utils.
{.push raises: [Defect].}
import bearssl, stew/byteutils
proc generateRequestId*(rng: ref BrHmacDrbgContext): string =