remove "seen" event from Pub.

too complicated. if anyone wants this they can do it themselves.
This commit is contained in:
fiatjaf
2023-02-15 20:21:27 -03:00
parent 87bf349ce8
commit 0ddcfdce68
2 changed files with 4 additions and 40 deletions

View File

@@ -104,9 +104,6 @@ let pub = relay.publish(event)
pub.on('ok', () => {
console.log(`${relay.url} has accepted our event`)
})
pub.on('seen', () => {
console.log(`we saw the event on ${relay.url}`)
})
pub.on('failed', reason => {
console.log(`failed to publish to ${relay.url}: ${reason}`)
})