We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c751cb1 commit b9a15b0Copy full SHA for b9a15b0
derivation/src/oracle.rs
@@ -97,7 +97,9 @@ impl TryFrom<Vec<Preimage>> for MemoryOracleClient {
97
verify_keccak256_preimage(&preimage_key, &preimage.data)?
98
}
99
PreimageKeyType::Sha256 => verify_sha256_preimage(&preimage_key, &preimage.data)?,
100
- _ => {}
+ PreimageKeyType::Blob => {}
101
+ PreimageKeyType::Precompile => {}
102
+ _ => continue,
103
104
inner.insert(preimage_key, preimage.data);
105
0 commit comments