Description
The spec says that a PUT_VALUE response message should have key and record fields set, however this implementaion does the following instead:
|
/// Response to a `PutValue`. |
|
PutValue { |
|
/// The key of the record. |
|
key: record::Key, |
|
/// Value of the record. |
|
value: Vec<u8>, |
|
}, |
|
} |
Motivation
It should follow the spec
Current Implementation
Uses key and value
Are you planning to do it yourself in a pull request?
Maybe
Description
The spec says that a
PUT_VALUEresponse message should havekeyandrecordfields set, however this implementaion does the following instead:rust-libp2p/protocols/kad/src/protocol.rs
Lines 326 to 333 in 0125fa9
Motivation
It should follow the spec
Current Implementation
Uses
keyandvalueAre you planning to do it yourself in a pull request?
Maybe