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
Making this mut will lead to methods that require sending txn to use mut self when using the provider, which might force owner of this struct to use mut self, i.e. fendermint top down provider might encounter this issue. If mut is not necessary, we can just stick with self, else callers might have to use RWLock for this.
The text was updated successfully, but these errors were encountered:
Related to #400 and tracked here.
Making this
mut
will lead to methods that require sending txn to usemut self
when using the provider, which might force owner of this struct to use mut self, i.e. fendermint top down provider might encounter this issue. If mut is not necessary, we can just stick with self, else callers might have to useRWLock
for this.The text was updated successfully, but these errors were encountered: