Merge pull request #1323 from mempool/simon/unknown-output-support

Display unknown for non standard output types
This commit is contained in:
softsimon 2022-03-09 16:29:04 +01:00 committed by GitHub
commit fd1514177f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -216,7 +216,7 @@ class BitcoinApi implements AbstractBitcoinApi {
if (map[outputType]) {
return map[outputType];
} else {
return '';
return 'unknown';
}
}