From 62c313d4a18d978270726ccdfd4e116caeba6e32 Mon Sep 17 00:00:00 2001 From: cachalots Date: Fri, 27 Feb 2026 15:41:20 +0800 Subject: [PATCH] culimit --- pkg/shreder/txparser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/shreder/txparser.go b/pkg/shreder/txparser.go index 3dbad1a..fb50b5e 100644 --- a/pkg/shreder/txparser.go +++ b/pkg/shreder/txparser.go @@ -214,7 +214,7 @@ func ParseTransactionWithHandler(ctx context.Context, versioned VersionedTransac cuPriceUint64 := binary.LittleEndian.Uint64(instruction.Data[1:9]) cuPrice = formatCUPrice(cuPriceUint64) } else if len(instruction.Data) == 5 && instruction.Data[0] == 0x02 { - cuLimit = binary.LittleEndian.Uint32(instruction.Data[1:4]) + cuLimit = binary.LittleEndian.Uint32(instruction.Data[1:5]) } } if program.Equals(solana.SystemProgramID) &&