| 344 | /// by 64 nibbles, representing the keccak256 hash of a slot. |
| 345 | #[derive(Debug, Clone, PartialEq, Eq, Hash, Arbitrary)] |
| 346 | pub struct StoragePath { |
| 347 | address: AddressPath, |
| 348 | slot: Nibbles, |
| 349 | } |
| 350 | |
| 351 | impl StoragePath { |
| 352 | /// Creates a new [StoragePath] from an [Address] and a [StorageKey]. |
nothing calls this directly
no outgoing calls
no test coverage detected