From 27ae16c1f8975df509d0bd55743b89f63fc546cc Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Tue, 12 Sep 2023 18:20:40 +1000 Subject: [PATCH] fix build --- codex/market.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex/market.nim b/codex/market.nim index 71bfb509..def94398 100644 --- a/codex/market.nim +++ b/codex/market.nim @@ -83,7 +83,7 @@ template cancelOnError*(market: Market, body) = try: body except JsonRpcProviderError as e: - echo "[market.cancelOnError] error encountered -- nonce: ", nonce + echo "[market.cancelOnError] error encountered -- nonce: ", e.nonce if e.nonce.isSome: # send a 0-valued transaction with the errored nonce to prevent stuck txs await market.cancelTransaction(!e.nonce)