Adding missing basic API endpoints when in bitcoind/electrum mode.

fixes #291
This commit is contained in:
softsimon
2021-01-25 01:09:42 +07:00
parent c9e175a0cc
commit e86b7c7258
6 changed files with 68 additions and 6 deletions

View File

@@ -31,7 +31,8 @@ export interface TransactionExtended extends IEsploraApi.Transaction {
export interface TransactionStripped {
txid: string;
fee: number;
weight: number;
weight?: number // deprecated
vsize: number;
value: number;
}
export interface BlockExtended extends IEsploraApi.Block {