Skip to content

Commit

Permalink
Remove double deriving of Eq
Browse files Browse the repository at this point in the history
  • Loading branch information
gcomte committed Oct 11, 2022
1 parent eed1287 commit 90ef181
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lightning-background-processor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ mod tests {

const EVENT_DEADLINE: u64 = 5 * FRESHNESS_TIMER;

#[derive(Clone, Eq, Hash, PartialEq, Eq)]
#[derive(Clone, Hash, PartialEq, Eq)]
struct TestDescriptor{}
impl SocketDescriptor for TestDescriptor {
fn send_data(&mut self, _data: &[u8], _resume_read: bool) -> usize {
Expand Down

0 comments on commit 90ef181

Please sign in to comment.