Fix method signature

This commit is contained in:
Mark Spanbroek 2022-03-17 10:16:13 +01:00 committed by markspanbroek
parent acc4fc25e6
commit c53d2235e6
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ type
method getBlockNumber*(provider: Provider): Future[UInt256] {.base.} =
doAssert false, "not implemented"
method getBlock*(provider: Provider, tag: BlockTag): Future[Block] {.base.} =
method getBlock*(provider: Provider, tag: BlockTag): Future[?Block] {.base.} =
doAssert false, "not implemented"
method call*(provider: Provider, tx: Transaction): Future[seq[byte]] {.base.} =