We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0636f9 commit c45b667Copy full SHA for c45b667
src/sdk/market/MarketRegister.ts
@@ -109,7 +109,10 @@ export class MarketRegister extends SDKConstruct {
109
const updates = await this.sdk.priceFeeds.generatePriceFeedsUpdateTxs();
110
txs = updates.txs;
111
}
112
- this.#logger?.debug({ configurators, pools }, "calling getMarkets");
+ this.#logger?.debug(
113
+ { configurators, pools },
114
+ `calling getMarkets with ${txs.length} price updates`,
115
+ );
116
// ...and push them using multicall before getting answers
117
const resp = await simulateMulticall(this.provider.publicClient, {
118
contracts: [
0 commit comments