Bitcoind: Use mempool as address index when doing address prefix search.

This commit is contained in:
softsimon
2021-01-11 01:51:57 +07:00
parent bbc917a2d9
commit 89d562a989
5 changed files with 27 additions and 2 deletions

View File

@@ -50,6 +50,9 @@ class ElectrsApi implements AbstractBitcoinApi {
.then((response) => response.data);
}
$getAddressPrefix(prefix: string): string[] {
throw new Error('Method not implemented.');
}
}
export default ElectrsApi;