-
Notifications
You must be signed in to change notification settings - Fork 31
Closed
Labels
MarketplaceSee https://miro.com/app/board/uXjVNZ03E-c=/ for detailsSee https://miro.com/app/board/uXjVNZ03E-c=/ for detailsbugSomething isn't workingSomething isn't working
Description
Eth-archiver node crashes with the following error:
TRC 2025-06-01 19:02:50.704+00:00 Already connected topics="codex blockexcnetworkpeer" tid=1748516 peer=16U*3Ajvin connId=683ca34baaeb55e1c2b40218
TRC 2025-06-01 19:02:50.704+00:00 Sending message topics="codex blockexcnetworkpeer" tid=1748516 peer=16U*3Ajvin connId=683ca34baaeb55e1c2b40218
TRC 2025-06-01 19:02:50.705+00:00 Received message topics="codex blockexcnetworkpeer" tid=1748516 peer=16U*3Ajvin connId=683ca34baaeb55e1c2b40216
TRC 2025-06-01 19:02:50.705+00:00 Received want list from peer topics="codex blockexcengine" tid=1748516 peer=16U*3Ajvin wantList=1
TRC 2025-06-01 19:02:50.706+00:00 Processing want list entry topics="codex blockexcengine" tid=1748516 wantList="(address: treeCid: zDzSvJTf8c45tDKbbYgnG2PuwzxV8eaGaU1RkJcNurBmPTkdb1v8, index: 7595, priority: 0, cancel: false, wantType: WantHave, sendDontHave: false, inFlight: false)" wantType=WantHave address="treeCid: zDz*kdb1v8, index: 7595" peer=16U*3Ajvin
TRC 2025-06-01 19:02:50.706+00:00 Sending presence to remote topics="codex blockexcengine" tid=1748516 items="(address: treeCid: zDzSvJTf8c45tDKbbYgnG2PuwzxV8eaGaU1RkJcNurBmPTkdb1v8, index: 7595, type: Have, price: @[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0])"
TRC 2025-06-01 19:02:50.707+00:00 Already connected topics="codex blockexcnetworkpeer" tid=1748516 peer=16U*3Ajvin connId=683ca34baaeb55e1c2b40218
TRC 2025-06-01 19:02:50.707+00:00 Sending message topics="codex blockexcnetworkpeer" tid=1748516 peer=16U*3Ajvin connId=683ca34baaeb55e1c2b40218
WRN 2025-06-01 19:02:50.707+00:00 Cannot retrieve the request topics="marketplace onchain market" tid=1748516 error="EVM reverted: Marketplace_UnknownRequest()"
ERR 2025-06-01 19:02:50.708+00:00 Unhandled exception in async proc, aborting topics="codex" tid=1748516 msg="no sale request"
Node was being used to upload and store eth ERA files.
Node is a custom build of v0.2.3 with 1 modification:
--- a/codex/purchasing/states/submitted.nim
+++ b/codex/purchasing/states/submitted.nim
@@ -32,7 +32,8 @@ method run*(
proc wait() {.async.} =
let done = newFuture[void]()
proc callback(_: RequestId) =
- done.complete()
+ if not done.completed():
+ done.complete()
let subscription = await market.subscribeFulfillment(request.id, callback)
await done
This is made in order to work around a different client mode crash: #962
Metadata
Metadata
Assignees
Labels
MarketplaceSee https://miro.com/app/board/uXjVNZ03E-c=/ for detailsSee https://miro.com/app/board/uXjVNZ03E-c=/ for detailsbugSomething isn't workingSomething isn't working