diff --git a/contracts/helpers/FactoryRegistry.vy b/contracts/helpers/FactoryRegistry.vy index cf6052f..63c7b34 100644 --- a/contracts/helpers/FactoryRegistry.vy +++ b/contracts/helpers/FactoryRegistry.vy @@ -9,9 +9,8 @@ MAX_FACTORIES: public(constant(uint256)) = 10 owner: public(address) poolFactories: public(DynArray[address, MAX_FACTORIES]) # camelCase to have same signature as origin registry - -pool_factory_count: uint256 -pool_factory_exists: HashMap[address, bool] +pool_factory_count: public(uint256) +pool_factory_exists: public(HashMap[address, bool]) @external def __init__(_owner: address):