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
Just to be clear, for that I would have to move Balance (which is an enum for native and cw20 balances) to cw0. That would introduce a dependency of cw0 on cw20.
I'm OK with that, but want to confirm first. Maybe it's better to introduce another mod / namespace for these "mixed" structs.
Update: I would need to put Balance in cw20, to avoid circular dependencies.
There is an import in the escrow contract:
use cw20_atomic_swap::balance::Balance;
We should be able to
use cw0::Balance
Also, see if there is anything else to de-dup.
The text was updated successfully, but these errors were encountered: