Skip to content

Commit

Permalink
Remove a class GasPriceManager
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelKim20 committed Sep 14, 2023
1 parent 52cf6a7 commit f960269
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 1,455 deletions.
3 changes: 1 addition & 2 deletions packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@
"size-limit": "^7.0.8",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.6.2",
"web3": "^1.7.3"
"typescript": "^4.6.2"
},
"dependencies": {
"@ethersproject/abstract-signer": "^5.7.0",
Expand Down
7 changes: 3 additions & 4 deletions packages/client/test/helper/FakerValidator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import { Signer } from "@ethersproject/abstract-signer";
import { BigNumberish } from "@ethersproject/bignumber";
import { NonceManager } from "@ethersproject/experimental";

import { GasPriceManager } from "./GasPriceManager";
import { GanacheServer } from "./GanacheServer";
import { Deployment } from "./ContractDeployer";

Expand Down Expand Up @@ -60,15 +59,15 @@ export class FakerValidator {
}

private get validator1(): Signer {
return new NonceManager(new GasPriceManager(this._accounts[2]));
return new NonceManager(this._accounts[2]);
}

private get validator2(): Signer {
return new NonceManager(new GasPriceManager(this._accounts[3]));
return new NonceManager(this._accounts[3]);
}

private get validator3(): Signer {
return new NonceManager(new GasPriceManager(this._accounts[4]));
return new NonceManager(this._accounts[4]);
}

public start(): Promise<void> {
Expand Down
60 changes: 0 additions & 60 deletions packages/client/test/helper/GasPriceManager.ts

This file was deleted.

Loading

0 comments on commit f960269

Please sign in to comment.