mirror of https://github.com/waku-org/js-waku.git
Add logs on light push
This commit is contained in:
parent
48bdb0b3f2
commit
7a0b947553
|
@ -40,9 +40,12 @@ export default function BroadcastPublicKey({
|
||||||
setPublicKeyMsg(msg);
|
setPublicKeyMsg(msg);
|
||||||
encodePublicKeyWakuMessage(msg)
|
encodePublicKeyWakuMessage(msg)
|
||||||
.then((wakuMsg) => {
|
.then((wakuMsg) => {
|
||||||
waku.lightPush.push(wakuMsg).catch((e) => {
|
waku.lightPush
|
||||||
console.error('Failed to send Public Key Message', e);
|
.push(wakuMsg)
|
||||||
});
|
.then((res) => console.log('Public Key Message pushed', res))
|
||||||
|
.catch((e) => {
|
||||||
|
console.error('Failed to send Public Key Message', e);
|
||||||
|
});
|
||||||
})
|
})
|
||||||
.catch((e) => {
|
.catch((e) => {
|
||||||
console.log(
|
console.log(
|
||||||
|
|
Loading…
Reference in New Issue