@gearbox-protocol/sdk 9.12.4 → 9.12.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -195,7 +195,8 @@ class MarketRegister extends import_base.SDKConstruct {
|
|
|
195
195
|
{
|
|
196
196
|
priceUpdates: txs,
|
|
197
197
|
contracts: multicalls.map((mc) => mc.call),
|
|
198
|
-
gas: this.sdk.gasLimit
|
|
198
|
+
gas: this.sdk.gasLimit,
|
|
199
|
+
blockNumber: this.sdk.currentBlock
|
|
199
200
|
}
|
|
200
201
|
);
|
|
201
202
|
for (let i = 0; i < multicalls.length; i++) {
|
|
@@ -176,7 +176,8 @@ class MarketRegister extends SDKConstruct {
|
|
|
176
176
|
{
|
|
177
177
|
priceUpdates: txs,
|
|
178
178
|
contracts: multicalls.map((mc) => mc.call),
|
|
179
|
-
gas: this.sdk.gasLimit
|
|
179
|
+
gas: this.sdk.gasLimit,
|
|
180
|
+
blockNumber: this.sdk.currentBlock
|
|
180
181
|
}
|
|
181
182
|
);
|
|
182
183
|
for (let i = 0; i < multicalls.length; i++) {
|