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.
This commit is contained in:
Eric 2024-10-29 19:02:42 +11:00 committed by GitHub
parent 0b39274ed5
commit 7645df19ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}