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
In state::state_api::StateReader all methods of the interface require a &mut self. In starknet-devnet-rs when using some method of StateReader we have to pass &mut reference which in some cases result in compilation errors like: cannot borrow as mutable more than once at a time or cannot borrow *self as immutable because it is also borrowed as mutable
In state::state_api::StateReader all methods of the interface require a &mut self. In starknet-devnet-rs when using some method of StateReader we have to pass &mut reference which in some cases result in compilation errors like:
cannot borrow as mutable more than once at a timeorcannot borrow*selfas immutable because it is also borrowed as mutable