You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
It seems like the latest iteration can't blend
ERC721ACommon
withArbitraryPriceSeller
because they both use different flavours ofPausable
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?
The text was updated successfully, but these errors were encountered: