We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e0657e3 + b9a15b0 commit b075c19Copy full SHA for b075c19
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
if inner.insert(preimage_key, preimage.data).is_some() {
105
return Err(Error::UnexpectedDuplicatePreimageKey(preimage_key));
0 commit comments