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) &&