Skip to content

Commit

Permalink
Rename messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Rigidity committed Dec 6, 2023
1 parent 9bc73c0 commit 29f529a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions chia-protocol/src/chia_protocol.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ pub enum ProtocolMessageTypes {
RespondFeeEstimates = 90,

// Extended wallet protocol
UnregisterForPhUpdates = 92,
UnregisterForCoinUpdates = 93,
UnregisterPhUpdates = 92,
UnregisterCoinUpdates = 93,
}

pub trait ChiaProtocolMessage {
Expand Down
4 changes: 2 additions & 2 deletions chia-protocol/src/wallet_protocol.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,11 @@ message_struct! (RespondToCoinUpdates {
coin_states: Vec<CoinState>,
});

message_struct! (UnregisterForPhUpdates {
message_struct! (UnregisterPhUpdates {
puzzle_hashes: Vec<Bytes32>,
});

message_struct! (UnregisterForCoinUpdates {
message_struct! (UnregisterCoinUpdates {
coin_ids: Vec<Bytes32>,
});

Expand Down

0 comments on commit 29f529a

Please sign in to comment.