From 9243c91ff445ad9d287b065975f1aa1f74b3f23c Mon Sep 17 00:00:00 2001 From: nicholaspai Date: Wed, 4 May 2022 11:10:57 -0400 Subject: [PATCH] improve: Rename ConfigStore => AcrossConfigStore --- contracts/{ConfigStore.sol => AcrossConfigStore.sol} | 2 +- test/ConfigStore.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename contracts/{ConfigStore.sol => AcrossConfigStore.sol} (97%) diff --git a/contracts/ConfigStore.sol b/contracts/AcrossConfigStore.sol similarity index 97% rename from contracts/ConfigStore.sol rename to contracts/AcrossConfigStore.sol index ce86aca6d..54eb1a105 100644 --- a/contracts/ConfigStore.sol +++ b/contracts/AcrossConfigStore.sol @@ -10,7 +10,7 @@ import "@openzeppelin/contracts/access/Ownable.sol"; * @dev This contract should not perform any validation on the setting values and should be owned by the governance * system of the full contract suite.. */ -contract ConfigStore is Ownable, MultiCaller { +contract AcrossConfigStore is Ownable, MultiCaller { // General dictionary where admin can associate variables with specific L1 tokens, like the Rate Model and Token // Transfer Thresholds. mapping(address => string) public l1TokenConfig; diff --git a/test/ConfigStore.ts b/test/ConfigStore.ts index c600bbce1..e6e7de7f1 100644 --- a/test/ConfigStore.ts +++ b/test/ConfigStore.ts @@ -7,7 +7,7 @@ let owner: SignerWithAddress, other: SignerWithAddress; describe("Config Store", function () { beforeEach(async function () { [owner, other] = await ethers.getSigners(); - configStore = await (await getContractFactory("ConfigStore", owner)).deploy(); + configStore = await (await getContractFactory("AcrossConfigStore", owner)).deploy(); }); it("Updating token config", async function () {