Route submitpackage calls to core on esplora backends

This commit is contained in:
natsoni
2024-10-13 11:14:23 +09:00
parent d1741a51c9
commit 735ed87b78
2 changed files with 5 additions and 4 deletions

View File

@@ -255,7 +255,7 @@ export class ApiService {
if (maxburnamount) {
queryParams.push(`maxburnamount=${maxburnamount}`);
}
return this.httpClient.post<SubmitPackageResult>(this.apiBaseUrl + this.apiBasePath + '/api/txs/package' + (queryParams.length > 0 ? `?${queryParams.join('&')}` : ''), rawTxs);
return this.httpClient.post<SubmitPackageResult>(this.apiBaseUrl + this.apiBasePath + '/api/v1/txs/package' + (queryParams.length > 0 ? `?${queryParams.join('&')}` : ''), rawTxs);
}
getTransactionStatus$(txid: string): Observable<any> {