diff --git a/tests/v2/test_jsonrpc_waku.nim b/tests/v2/test_jsonrpc_waku.nim index c18960ff7..817ba5363 100644 --- a/tests/v2/test_jsonrpc_waku.nim +++ b/tests/v2/test_jsonrpc_waku.nim @@ -25,6 +25,7 @@ import ../../waku/v2/protocol/waku_swap/waku_swap, ../../waku/v2/protocol/waku_filter/waku_filter, ../../waku/v2/utils/peers, + ../../waku/v2/utils/time, ../test_helpers template sourceDir*: string = currentSourcePath.rsplit(DirSep, 1)[0] diff --git a/waku/v2/node/quicksim2.nim b/waku/v2/node/quicksim2.nim index e29db4225..f3cac49ed 100644 --- a/waku/v2/node/quicksim2.nim +++ b/waku/v2/node/quicksim2.nim @@ -12,6 +12,7 @@ import ../protocol/waku_filter/waku_filter_types, ../protocol/waku_store/waku_store_types, ../protocol/waku_message, + ../utils/time, ./wakunode2, ./waku_payload, ./jsonrpc/[jsonrpc_types,jsonrpc_utils] diff --git a/waku/v2/protocol/waku_store/waku_store.nim b/waku/v2/protocol/waku_store/waku_store.nim index d7f8ff77d..af86a018b 100644 --- a/waku/v2/protocol/waku_store/waku_store.nim +++ b/waku/v2/protocol/waku_store/waku_store.nim @@ -23,6 +23,7 @@ import ../../node/storage/message/message_store, ../../node/peer_manager/peer_manager, ../../utils/requests, + ../../utils/time, ../waku_swap/waku_swap, ./waku_store_types diff --git a/waku/v2/utils/pagination.nim b/waku/v2/utils/pagination.nim index 99087e9a2..7dbffcf9e 100644 --- a/waku/v2/utils/pagination.nim +++ b/waku/v2/utils/pagination.nim @@ -11,4 +11,4 @@ type ## This type contains the description of an Index used in the pagination of WakuMessages digest*: MDigest[256] receiverTime*: int64 - senderTime*: int64 # the time at which the message is generated + senderTime*: int64 # the time at which the message is generated \ No newline at end of file