Skip to content

Commit

Permalink
renames config to configuration (#198)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
emizzle authored Oct 29, 2024
1 parent 0b39274 commit 7645df1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/Marketplace.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 7645df1

Please sign in to comment.