Fix the CI failure

This commit is contained in:
Zahary Karadjov 2020-08-10 23:08:44 +03:00
parent 3900d91958
commit fc0c27a730
No known key found for this signature in database
GPG Key ID: C8936F8A3073D609
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ template sourceDir: string = currentSourcePath.rsplit(DirSep, 1)[0]
createRpcSigs(RpcClient, sourceDir & DirSep & "web3" & DirSep & "ethcallsigs.nim")
export UInt256, Int256, Uint128, Int128
export ethtypes, conversions
export ethtypes, conversions, encoding
type
Web3* = ref object

View File

@ -208,4 +208,4 @@ func encode*(x: openArray[Encodable]): EncodeResult =
func decode*[T; I: static int](input: string, to: array[0..I, T]): array[0..I, T] =
for i in 0..I:
result[i] = input[i*64 .. (i+1)*64].decode(T)
result[i] = input[i*64 .. (i+1)*64].decode(T)