lnwire+discovery: rename ShortChannelIDEncoding to QueryEncoding

Since the the encoding can be used for multiple different fields, we
rename it here to be more generic.
This commit is contained in:
Elle Mouton
2023-09-19 20:43:14 +02:00
parent 341bae098c
commit c882223ead
11 changed files with 162 additions and 40 deletions

View File

@@ -225,10 +225,10 @@ func TestWriteColorRGBA(t *testing.T) {
func TestWriteShortChanIDEncoding(t *testing.T) {
buf := new(bytes.Buffer)
data := ShortChanIDEncoding(1)
data := QueryEncoding(1)
expectedBytes := []byte{1}
err := WriteShortChanIDEncoding(buf, data)
err := WriteQueryEncoding(buf, data)
require.NoError(t, err)
require.Equal(t, expectedBytes, buf.Bytes())