mirror of
https://github.com/status-im/js-waku-examples.git
synced 2025-01-20 20:09:07 +00:00
Updates
This commit is contained in:
parent
d8dcf2644e
commit
3ae5eb3c88
@ -379,7 +379,7 @@
|
||||
const callback = (wakuMessage) => {
|
||||
const {timestamp, nick, text} = ProtoChatMessage.decode(wakuMessage.payload)
|
||||
const time = new Date();
|
||||
time.setTime(Number(timestamp));
|
||||
time.setTime(Number(timestamp) * 1000);
|
||||
|
||||
let proofState, verify;
|
||||
if (typeof wakuMessage.rateLimitProof === "undefined") {
|
||||
@ -432,7 +432,7 @@
|
||||
sendButton.onclick = async () => {
|
||||
const text = utils.utf8ToBytes(textInput.value);
|
||||
const timestamp = new Date();
|
||||
const msg = ProtoChatMessage.create({text, nick: nicknameInput.value, timestamp: timestamp.valueOf()});
|
||||
const msg = ProtoChatMessage.create({text, nick: nicknameInput.value, timestamp: Math.floor(timestamp.valueOf() / 1000)});
|
||||
const payload = ProtoChatMessage.encode(msg).finish();
|
||||
console.log("Sending message with proof...")
|
||||
sendingStatusSpan.innerText = 'sending...'
|
||||
|
Loading…
x
Reference in New Issue
Block a user