We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b0010d commit f6d4b6aCopy full SHA for f6d4b6a
protocol/lighter/api.go
@@ -63,7 +63,7 @@ func (tx *LighterTx) UnmarshalJSON(data []byte) error {
63
if tx.Type == TxTypeL2Transfer {
64
var t *Transfer
65
if err := json.Unmarshal([]byte(tx.Info), &t); err != nil {
66
- return fmt.Errorf("failed to unmarshal transfer: %w", err)
+ return fmt.Errorf("failed to unmarshal info: %w", err)
67
}
68
tx.Transfer = t
69
} else {
0 commit comments