Skip to content

Commit 4251647

Browse files
fix(starknet_os): fix resource field of resource bounds (#6312)
1 parent a21c621 commit 4251647

File tree

1 file changed

+1
-1
lines changed
  • crates/starknet_os/src/hints/hint_implementation/execution

1 file changed

+1
-1
lines changed

crates/starknet_os/src/hints/hint_implementation/execution/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ impl<IG: IdentifierGetter> LoadCairoObject<IG> for ResourceAsFelts {
4242
_constants: &HashMap<String, Felt>,
4343
) -> VmUtilsResult<()> {
4444
let resource_bounds_list = vec![
45-
("resource_name", self.resource_name.into()),
45+
("resource", self.resource_name.into()),
4646
("max_amount", self.max_amount.into()),
4747
("max_price_per_unit", self.max_price_per_unit.into()),
4848
];

0 commit comments

Comments
 (0)