mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-19 03:57:40 +02:00
multi: comprehensive typo fixes across all packages
This commit is contained in:
committed by
Olaoluwa Osuntokun
parent
72a5bc8648
commit
a93736d21e
@@ -112,7 +112,7 @@ func (c *Conn) Read(b []byte) (n int, err error) {
|
||||
// In order to reconcile the differences between the record abstraction
|
||||
// of our AEAD connection, and the stream abstraction of TCP, we
|
||||
// maintain an intermediate read buffer. If this buffer becomes
|
||||
// depleated, then we read the next record, and feed it into the
|
||||
// depleted, then we read the next record, and feed it into the
|
||||
// buffer. Otherwise, we read directly from the buffer.
|
||||
if c.readBuf.Len() == 0 {
|
||||
plaintext, err := c.noise.ReadMessage(c.conn)
|
||||
|
@@ -140,7 +140,7 @@ func TestMaxPayloadLength(t *testing.T) {
|
||||
b := Machine{}
|
||||
b.split()
|
||||
|
||||
// Create a payload that's juust over the maximum allotted payload
|
||||
// Create a payload that's only *slightly* above the maximum allotted payload
|
||||
// length.
|
||||
payloadToReject := make([]byte, math.MaxUint16+1)
|
||||
|
||||
@@ -162,7 +162,7 @@ func TestMaxPayloadLength(t *testing.T) {
|
||||
"accepted")
|
||||
}
|
||||
|
||||
// Generate a final payload which is juuust over the max payload length
|
||||
// Generate a final payload which is only *slightly* above the max payload length
|
||||
// when the MAC is accounted for.
|
||||
payloadToReject = make([]byte, math.MaxUint16+1)
|
||||
|
||||
@@ -190,7 +190,7 @@ func TestWriteMessageChunking(t *testing.T) {
|
||||
|
||||
// Launch a new goroutine to write the large message generated above in
|
||||
// chunks. We spawn a new goroutine because otherwise, we may block as
|
||||
// the kernal waits for the buffer to flush.
|
||||
// the kernel waits for the buffer to flush.
|
||||
var wg sync.WaitGroup
|
||||
wg.Add(1)
|
||||
go func() {
|
||||
@@ -364,7 +364,7 @@ func TestBolt0008TestVectors(t *testing.T) {
|
||||
recvKey, err := hex.DecodeString("bb9020b8965f4df047e07f955f3c4b884" +
|
||||
"18984aadc5cdb35096b9ea8fa5c3442")
|
||||
if err != nil {
|
||||
t.Fatalf("unable to parse recv'ing key: %v", err)
|
||||
t.Fatalf("unable to parse receiving key: %v", err)
|
||||
}
|
||||
|
||||
chainKey, err := hex.DecodeString("919219dbb2920afa8db80f9a51787a840" +
|
||||
|
Reference in New Issue
Block a user