divergencetech / ethier

Golang and Solidity SDK to make Ethereum development ethier
MIT License
217 stars 23 forks source link

Unable to use latest access-based ERC721ACommon with ArbitraryPriceSeller #90

Open wattsyart opened 1 year ago

wattsyart commented 1 year ago

image

It seems like the latest iteration can't blend ERC721ACommon with ArbitraryPriceSeller because they both use different flavours of Pausable that don't have virtual functions. Each one wants to implement them with different restriction sets.

Normally you'd just override them both in the consuming contract and choose. However, they are not marked virtual, so this is not possible.

Are you able to make them virtual so consumers can override them?