diff --git a/rawtx.go b/rawtx.go index 3693a39..456dbf2 100644 --- a/rawtx.go +++ b/rawtx.go @@ -68,6 +68,10 @@ type RawTx struct { //EntryContract []string `json:"entryContract,omitempty"` } +func (tx *RawTx) GetAccountLust() []solana.PublicKey { + return tx.getAccountList() +} + func (tx *RawTx) TxHash() string { if len(tx.Transaction.Signatures) > 0 { return tx.Transaction.Signatures[0].String()