Skip to content

Commit

Permalink
bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
0xjeffro committed Dec 24, 2024
1 parent f37c901 commit 7d77af8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solana/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func Parser(rpcData []byte) ([]types.ParsedResult, error) {
func TxParser(tx types.RawTx) *types.ParsedResult {
var result types.ParsedResult
result.RawTx = tx // set raw tx
result = *getAccountList(&result) // get account list
result = *GetAccountList(&result) // get account list
result.Actions = make([]types.Action, len(tx.Transaction.Message.Instructions)) // init actions

for i := range tx.Transaction.Message.Instructions {
Expand Down

0 comments on commit 7d77af8

Please sign in to comment.