Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion test/ConfigStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 () {
Expand Down