Fix call to getblock
This commit is contained in:
parent
a134947df6
commit
85bf0fef59
1 changed files with 6 additions and 1 deletions
|
@ -1805,7 +1805,12 @@ generateToken = do
|
||||||
getBlockInfo ::
|
getBlockInfo ::
|
||||||
BS.ByteString -> BS.ByteString -> SC.Scientific -> IO (Maybe BlockResponse)
|
BS.ByteString -> BS.ByteString -> SC.Scientific -> IO (Maybe BlockResponse)
|
||||||
getBlockInfo nodeUser nodePwd bh = do
|
getBlockInfo nodeUser nodePwd bh = do
|
||||||
blockInfo <- makeZcashCall nodeUser nodePwd "getblock" [Number bh]
|
blockInfo <-
|
||||||
|
makeZcashCall
|
||||||
|
nodeUser
|
||||||
|
nodePwd
|
||||||
|
"getblock"
|
||||||
|
[Number bh, Number $ SC.scientific 1 0]
|
||||||
let content = getResponseBody blockInfo :: RpcResponse BlockResponse
|
let content = getResponseBody blockInfo :: RpcResponse BlockResponse
|
||||||
if isNothing (err content)
|
if isNothing (err content)
|
||||||
then return $ result content
|
then return $ result content
|
||||||
|
|
Loading…
Reference in a new issue