Skip to content

Commit 8d2439d

Browse files
committed
fix mapping identification
1 parent 553da5b commit 8d2439d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

crates/common/src/slot_identifier.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,8 +464,10 @@ impl SlotIdentifier {
464464
}
465465
} else if storage_type.encoding == ENCODING_MAPPING
466466
&& let Some(mapping_slots) = mapping_slots
467+
&& let Some(info) =
468+
self.handle_mapping(storage, storage_type, slot, &slot_str, mapping_slots)
467469
{
468-
return self.handle_mapping(storage, storage_type, slot, &slot_str, mapping_slots);
470+
return Some(info);
469471
}
470472
}
471473

0 commit comments

Comments
 (0)