MostroP2P / mostro-web

Mostro web client
https://mostro.network
MIT License
23 stars 11 forks source link

Error Submitting Order: No Relay Able to Receive Event #28

Open bilthon opened 7 months ago

bilthon commented 7 months ago

Description

When attempting to submit an order, the operation fails with an error indicating that "No relay was able to receive the event". This issue occurs randomly, but when it happens it prevents order submissions from being processed successfully.

Error Message

index.bh3kQgp4.js:1 Error while submitting order: Error: No relay was able to receive the event
at Bo.publish (entry.UY7qbt-d.js:2155:44995)
at async Ro.publishEvent (entry.UY7qbt-d.js:2161:75795)
at async Mostro.submitOrder (entry.UY7qbt-d.js:2161:86213)
at async Proxy.onSubmit (index.bh3kQgp4.js:1:33530)

Looking at the stack trace it is clear that the error comes from the OrderForm.vue component here:

try {
    await this.$mostro.submitOrder(s),
    this.onClose()
} catch (r) {
    console.error("Error while submitting order: ", r)
} finally {
    this.onProcessingUpdate(!1)
}