Skip to content

Commit 7e579a5

Browse files
committed
clean up
1 parent 4022a35 commit 7e579a5

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

src/swapService/strategies/aggregators/sources/uniswapQuoteSource.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export class CustomUniswapQuoteSource extends AlwaysValidConfigAndContextSource<
148148

149149
// Update calldata and gas estimate
150150
calldata = multicallData!
151-
gasUseEstimate = BigInt(gasUseEstimate) + 12_500n;
151+
gasUseEstimate = BigInt(gasUseEstimate) + 12_500n
152152
}
153153

154154
const quote = {

src/swapService/strategies/aggregators/stubGasPriceSource.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ export class StubGasPriceSource implements IGasPriceSource<GasValues> {
2626
}
2727

2828
getGasPrice<Requirements extends FieldsRequirements<GasValues>>() {
29-
console.log("GET GAS PRICE");
30-
console.trace();
3129
return Promise.resolve({
3230
standard: {
3331
maxFeePerGas: 0,

src/swapService/strategies/strategyAggregators.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ import {
4242
} from "../utils"
4343
import { CustomSourceList } from "./aggregators/customSourceList"
4444
import pendleAggregators from "./aggregators/sources/pendle/pendleAggregators.json"
45-
import { TokenlistMetadataSource } from "./aggregators/tokenlistMetadataSource"
4645
import { StubGasPriceSource } from "./aggregators/stubGasPriceSource"
46+
import { TokenlistMetadataSource } from "./aggregators/tokenlistMetadataSource"
4747

4848
const DAO_MULTISIG = "0xcAD001c30E96765aC90307669d578219D4fb1DCe"
4949
const DEFAULT_TIMEOUT = "30000"

0 commit comments

Comments
 (0)