Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oxlime committed Oct 3, 2024
1 parent ec9344f commit bb2a8a7
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/network/protocol/messages/lib.zig
Original file line number Diff line number Diff line change
Expand Up @@ -160,12 +160,9 @@ pub const Message = union(MessageTypes) {
.notfound => |*m| m.checksum(),
.sendheaders => |*m| m.checksum(),
.filterload => |*m| m.checksum(),
<<<<<<< HEAD
.addr => |*m| m.checksum(),
=======
.headers => |*m| m.checksum(),
.cmpctblock => |*m| m.checksum(),
>>>>>>> origin/main
};
}

Expand All @@ -187,12 +184,9 @@ pub const Message = union(MessageTypes) {
.notfound => |m| m.hintSerializedLen(),
.sendheaders => |m| m.hintSerializedLen(),
.filterload => |*m| m.hintSerializedLen(),
<<<<<<< HEAD
.addr => |*m| m.hintSerializedLen(),
=======
.headers => |*m| m.hintSerializedLen(),
.cmpctblock => |*m| m.hintSerializedLen(),
>>>>>>> origin/main
};
}
};
Expand Down

0 comments on commit bb2a8a7

Please sign in to comment.