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:
Claude 2026-04-02 11:33:06 +01:00
parent 4e10e20a6b
commit 7921881ed6
No known key found for this signature in database
GPG key ID: AF404715446AEB41

View file

@ -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 (