mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-06 15:53:09 +00:00
Update nwaku RPC with nanoseconds timestamp
This commit is contained in:
parent
a23d2be461
commit
c07396c30b
@ -64,7 +64,7 @@ export interface KeyPair {
|
||||
export interface WakuRelayMessage {
|
||||
payload: string;
|
||||
contentTopic?: string;
|
||||
timestamp?: number; // Float in seconds
|
||||
timestamp?: number; // Integer in seconds
|
||||
}
|
||||
|
||||
export class NimWaku {
|
||||
@ -194,12 +194,7 @@ export class NimWaku {
|
||||
}
|
||||
let timestamp;
|
||||
if (message.timestamp) {
|
||||
timestamp = message.timestamp.valueOf() / 1000;
|
||||
if (Number.isInteger(timestamp)) {
|
||||
// Add a millisecond to ensure it's not an integer
|
||||
// Until https://github.com/status-im/nim-waku/issues/691 is done
|
||||
timestamp += 0.001;
|
||||
}
|
||||
timestamp = message.timestamp.valueOf() * 1000;
|
||||
}
|
||||
|
||||
const rpcMessage = {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user