@@ -11,7 +11,7 @@ use derive_more::{From, Into};
1111
1212/// Unsigned inputs used in constructing unsigned transactions
1313#[ wasm_bindgen]
14- #[ derive( PartialEq , Debug , Clone , From , Into ) ]
14+ #[ derive( PartialEq , Eq , Debug , Clone , From , Into ) ]
1515pub struct UnsignedInput ( chain:: transaction:: UnsignedInput ) ;
1616
1717#[ wasm_bindgen]
@@ -47,7 +47,7 @@ impl UnsignedInput {
4747
4848/// Collection of unsigned signed inputs
4949#[ wasm_bindgen]
50- #[ derive( PartialEq , Debug , Clone ) ]
50+ #[ derive( PartialEq , Eq , Debug , Clone ) ]
5151pub struct UnsignedInputs ( Vec < UnsignedInput > ) ;
5252
5353#[ wasm_bindgen]
@@ -87,7 +87,7 @@ impl From<Vec<chain::transaction::UnsignedInput>> for UnsignedInputs {
8787
8888/// Signed inputs used in signed transactions
8989#[ wasm_bindgen]
90- #[ derive( PartialEq , Debug , Clone , From , Into ) ]
90+ #[ derive( PartialEq , Eq , Debug , Clone , From , Into ) ]
9191pub struct Input ( chain:: transaction:: Input ) ;
9292
9393#[ wasm_bindgen]
@@ -105,7 +105,7 @@ impl Input {
105105
106106/// Collection of signed inputs
107107#[ wasm_bindgen]
108- #[ derive( PartialEq , Debug , Clone ) ]
108+ #[ derive( PartialEq , Eq , Debug , Clone ) ]
109109pub struct Inputs ( Vec < Input > ) ;
110110
111111#[ wasm_bindgen]
0 commit comments