We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 843133a commit fbc9405Copy full SHA for fbc9405
rust/src/protocol_types/witnesses/fixed_tx_witnesses_set.rs
@@ -84,7 +84,7 @@ impl FixedTxWitnessesSet {
84
buf.finalize()
85
}
86
87
- #[cfg(not(all(target_arch = "wasm32", not(target_os = "emscripten"), feature = "dont-expose-wasm")))]
+ #[cfg(not(all(target_arch = "wasm32", not(target_os = "emscripten"), not(feature = "dont-expose-wasm"))))]
88
pub fn from_bytes(data: Vec<u8>) -> Result<FixedTxWitnessesSet, DeserializeError> {
89
let mut raw = Deserializer::from(std::io::Cursor::new(data));
90
Self::deserialize(&mut raw)
0 commit comments