We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MutBorrowFieldGeneric is currently being charged as MutBorrowField in the interpreter.rs
interpreter.rs
It's not a backward compatibility issue.
third_part/move/move-vm/runtime/src/interpreter.rs
Bytecode::ImmBorrowFieldGeneric(fi_idx) | Bytecode::MutBorrowFieldGeneric(fi_idx) => { let instr = match instruction { Bytecode::MutBorrowField(_) => S::MutBorrowFieldGeneric, _ => S::ImmBorrowFieldGeneric, }; println!("{:?}", instr); gas_meter.charge_simple_instr(instr)?;
The text was updated successfully, but these errors were encountered:
wlawt
Successfully merging a pull request may close this issue.
🐛 Bug
MutBorrowFieldGeneric is currently being charged as MutBorrowField in the
interpreter.rs
It's not a backward compatibility issue.
To reproduce
third_part/move/move-vm/runtime/src/interpreter.rs
The text was updated successfully, but these errors were encountered: