Skip to content
Snippets Groups Projects
Commit d76aebf2 authored by Mahdi Yari's avatar Mahdi Yari
Browse files

Merge branch 'fix-error-handling' into 'master'

fix error handling

See merge request !34
parents 8db8ad6a f6b7a627
No related branches found
Tags v1.0.1
No related merge requests found
{ {
"name": "@hiveio/dhive", "name": "@hiveio/dhive",
"version": "1.0.0", "version": "1.0.1",
"description": "Hive blockchain RPC client library", "description": "Hive blockchain RPC client library",
"author": "hive-network", "author": "hive-network",
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
......
...@@ -356,7 +356,8 @@ export class BroadcastAPI { ...@@ -356,7 +356,8 @@ export class BroadcastAPI {
transaction: SignedTransaction transaction: SignedTransaction
): Promise<TransactionConfirmation> { ): Promise<TransactionConfirmation> {
const trxId = cryptoUtils.generateTrxId(transaction) const trxId = cryptoUtils.generateTrxId(transaction)
return Object.assign({ id: trxId }, this.call('broadcast_transaction', [transaction])) const result = await this.call('broadcast_transaction', [transaction])
return Object.assign({ id: trxId }, result)
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment