-remove bogus logging
This commit is contained in:
parent
64e78d03a1
commit
1c3e9473fd
@ -1407,9 +1407,7 @@ export class MerchantApiClient {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async getPrivateInstanceInfo(): Promise<any> {
|
async getPrivateInstanceInfo(): Promise<any> {
|
||||||
console.log(this.makeAuthHeader());
|
|
||||||
const url = new URL("private", this.baseUrl);
|
const url = new URL("private", this.baseUrl);
|
||||||
logger.info(`request url ${url.href}`);
|
|
||||||
const resp = await this.httpClient.fetch(url.href, {
|
const resp = await this.httpClient.fetch(url.href, {
|
||||||
method: "GET",
|
method: "GET",
|
||||||
headers: this.makeAuthHeader(),
|
headers: this.makeAuthHeader(),
|
||||||
@ -1418,7 +1416,6 @@ export class MerchantApiClient {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async getPrivateTipReserves(): Promise<TippingReserveStatus> {
|
async getPrivateTipReserves(): Promise<TippingReserveStatus> {
|
||||||
console.log(this.makeAuthHeader());
|
|
||||||
const url = new URL("private/reserves", this.baseUrl);
|
const url = new URL("private/reserves", this.baseUrl);
|
||||||
const resp = await this.httpClient.fetch(url.href, {
|
const resp = await this.httpClient.fetch(url.href, {
|
||||||
method: "GET",
|
method: "GET",
|
||||||
|
@ -402,7 +402,6 @@ deploymentCli
|
|||||||
);
|
);
|
||||||
|
|
||||||
const res = await merchantClient.getPrivateInstanceInfo();
|
const res = await merchantClient.getPrivateInstanceInfo();
|
||||||
console.log(res);
|
|
||||||
|
|
||||||
const tipRes = await merchantClient.getPrivateTipReserves();
|
const tipRes = await merchantClient.getPrivateTipReserves();
|
||||||
console.log(j2s(tipRes));
|
console.log(j2s(tipRes));
|
||||||
|
Loading…
Reference in New Issue
Block a user