feat: parse rpc full block from hex to binary representation

This commit is contained in:
Leonardo Lima
2022-07-27 17:12:33 -03:00
parent 7f4a25baa0
commit 6d4ee30a0e
2 changed files with 3 additions and 2 deletions

View File

@@ -77,7 +77,8 @@ class BitcoinApi implements AbstractBitcoinApi {
}
$getRawBlock(hash: string): Promise<string> {
return this.bitcoindClient.getBlock(hash, 0);
return this.bitcoindClient.getBlock(hash, 0)
.then((raw: string) => Buffer.from(raw, "hex"));
}
$getBlockHash(height: number): Promise<string> {