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
{{ message }}
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
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
The text was updated successfully, but these errors were encountered:
gswirski
pushed a commit
to reilabs/blockifier
that referenced
this issue
Jun 26, 2024
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
orcannot borrow
*selfas immutable because it is also borrowed as mutable
The text was updated successfully, but these errors were encountered: