Skip to content

Commit b9d3c48

Browse files
committed
chore: remove unused broken code
1 parent a24f6a1 commit b9d3c48

File tree

11 files changed

+11
-601
lines changed

11 files changed

+11
-601
lines changed

.husky/pre-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
yarn lint

cli/cli.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { migrateCommand } from './commands/migrate'
77
import { proxyCommand } from './commands/proxy'
88
import { protocolCommand } from './commands/protocol'
99
import { contractsCommand } from './commands/contracts'
10-
import { simulationCommand } from './commands/simulations'
1110
import { airdropCommand } from './commands/airdrop'
1211

1312
import { cliOpts } from './defaults'
@@ -33,7 +32,6 @@ yargs
3332
.command(proxyCommand)
3433
.command(protocolCommand)
3534
.command(contractsCommand)
36-
.command(simulationCommand)
3735
.command(airdropCommand)
3836
.demandCommand(1, 'Choose a command from the above list')
3937
.help().argv

cli/commands/protocol/set.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export const setProtocolParam = async (cli: CLIEnvironment, cliArgs: CLIArgs): P
8282

8383
// Parse params
8484
const params = cliArgs.params.toString().split(',')
85-
let parsedParams = []
85+
const parsedParams = []
8686
for (const param of params) {
8787
try {
8888
const parsedParam = BigNumber.from(param)

cli/commands/simulations/baseSimulation.ts

Lines changed: 0 additions & 339 deletions
This file was deleted.

0 commit comments

Comments
 (0)