ax(ueps): rename receiver e to packetErr for AX Principle 1 compliance
Single-letter receiver `e` is not in the AX-permitted list (i, _, t, c). Renamed to `packetErr` for predictable naming. Co-Authored-By: Charon <charon@lethean.io>
This commit is contained in:
parent
4e10e20a6b
commit
7921881ed6
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ var errTLVValueTooLarge = packetError("TLV value too large for 1-byte length hea
|
|||
|
||||
type packetError string
|
||||
|
||||
func (e packetError) Error() string { return string(e) }
|
||||
func (packetErr packetError) Error() string { return string(packetErr) }
|
||||
|
||||
// writeTLV(buffer, TagVersion, []byte{0x09}); writeTLV(buffer, TagHMAC, hmacSignature); buffer.WriteByte(TagPayload)
|
||||
const (
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue