From 7645df19ab0235f445c8b20e0de83960fb960c24 Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Tue, 29 Oct 2024 19:02:42 +1100 Subject: [PATCH] renames config to configuration (#198) This is not the right reason to be making this kind of change, but a very hard to debug symbol clash in codex for `config`. Changing this to `configuration` is the easiest way to fix the issue. --- contracts/Marketplace.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/Marketplace.sol b/contracts/Marketplace.sol index dc244ef..beeae58 100644 --- a/contracts/Marketplace.sol +++ b/contracts/Marketplace.sol @@ -88,7 +88,7 @@ contract Marketplace is SlotReservations, Proofs, StateRetrieval, Endian { _config = configuration; } - function config() public view returns (MarketplaceConfig memory) { + function configuration() public view returns (MarketplaceConfig memory) { return _config; }