mirror of
https://github.com/codex-storage/nim-codex.git
synced 2025-01-26 12:48:58 +00:00
catch contract errors to return bool
# Conflicts: # codex/contracts/proofs.nim # vendor/nim-ethers
This commit is contained in:
parent
ae9467b780
commit
dab65eb6bd
@ -26,15 +26,19 @@ method isProofRequired*(proofs: OnChainProofs,
|
||||
id: SlotId): Future[bool] {.async.} =
|
||||
try:
|
||||
return await proofs.storage.isProofRequired(id)
|
||||
except ValueError:
|
||||
return false
|
||||
except JsonRpcProviderError as e:
|
||||
if e.revertReason == "Slot empty":
|
||||
return false
|
||||
raise e
|
||||
|
||||
method willProofBeRequired*(proofs: OnChainProofs,
|
||||
id: SlotId): Future[bool] {.async.} =
|
||||
try:
|
||||
return await proofs.storage.willProofBeRequired(id)
|
||||
except ValueError:
|
||||
return false
|
||||
except JsonRpcProviderError:
|
||||
if e.revertReason == "Slot empty":
|
||||
return false
|
||||
raise e
|
||||
|
||||
method getProofEnd*(proofs: OnChainProofs,
|
||||
id: SlotId): Future[UInt256] {.async.} =
|
||||
|
Loading…
x
Reference in New Issue
Block a user