Skip to content

Commit fbc9405

Browse files
committed
fix conditional
1 parent 843133a commit fbc9405

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/src/protocol_types/witnesses/fixed_tx_witnesses_set.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ impl FixedTxWitnessesSet {
8484
buf.finalize()
8585
}
8686

87-
#[cfg(not(all(target_arch = "wasm32", not(target_os = "emscripten"), feature = "dont-expose-wasm")))]
87+
#[cfg(not(all(target_arch = "wasm32", not(target_os = "emscripten"), not(feature = "dont-expose-wasm"))))]
8888
pub fn from_bytes(data: Vec<u8>) -> Result<FixedTxWitnessesSet, DeserializeError> {
8989
let mut raw = Deserializer::from(std::io::Cursor::new(data));
9090
Self::deserialize(&mut raw)

0 commit comments

Comments
 (0)