Update backend/src/api/bitcoin/bitcoin-api.interface.ts

Co-authored-by: Miguel Medeiros <miguel@miguelmedeiros.com.br>
This commit is contained in:
softsimon 2021-09-17 15:54:21 +04:00 committed by softsimon
parent 3e788ecbf9
commit 138f6e4e39
No known key found for this signature in database
GPG Key ID: 488D7DCFB5A430D7

View File

@ -92,8 +92,8 @@ export namespace IBitcoinApi {
hex: string; // (string) the hex
reqSigs?: number; // (numeric) The required sigs
type: string; // (string) The type, eg 'pubkeyhash'
addresses?: string[] // (string) bitcoin addresses
address?: string // (string) bitcoin address
addresses?: string[]; // (string) bitcoin addresses
address?: string; // (string) bitcoin address
};
}