fix: pending blocks may not contains block hash

Pending blocks may not contain a block hash and therefore Block.hash should be optional.
This commit is contained in:
Eric Mastro 2023-04-24 20:36:08 +10:00 committed by markspanbroek
parent 0321e6d7bd
commit 34b7a82565
2 changed files with 15 additions and 1 deletions

View File

@ -46,7 +46,7 @@ type
Block* = object
number*: ?UInt256
timestamp*: UInt256
hash*: array[32, byte]
hash*: ?array[32, byte]
const EthersDefaultConfirmations* {.intdefine.} = 12
const EthersReceiptTimeoutBlks* {.intdefine.} = 50 # in blocks

View File

@ -128,6 +128,20 @@ suite "JsonRpcProvider":
check blk.number.isSome
check blk.number.get.isZero
test "Conversion: missing block hash in Block isNone":
var blkJson = %*{
"subscription": "0x20",
"result":{
"number": "0x1",
"hash": newJNull(),
"timestamp": "0x6285c293"
}
}
var blk = Block.fromJson(blkJson["result"])
check blk.hash.isNone
test "Conversion: missing block number in TransactionReceipt isNone":
var txReceiptJson = %*{