Skip to content

Commit

Permalink
chore: expose count and map
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrovalido committed Oct 6, 2024
1 parent 2e26ccf commit 14a7663
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions contracts/helpers/FactoryRegistry.vy
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 14a7663

Please sign in to comment.