Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
akos-tk committed Dec 11, 2024
1 parent aff2734 commit 36fe864
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/bath/actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ type (
EncryptedComment *EncryptedComment
Recipient tongo.AccountID
Sender tongo.AccountID
Refund *Refund
}
SmartContractAction struct {
TonAttached int64
Expand Down Expand Up @@ -351,6 +350,10 @@ func (a *TonTransferAction) SubjectAccounts() []tongo.AccountID {
return []tongo.AccountID{a.Sender, a.Recipient}
}

func (a *ExtraCurrencyTransferAction) SubjectAccounts() []tongo.AccountID {
return []tongo.AccountID{a.Sender, a.Recipient}
}

func (a *SmartContractAction) SubjectAccounts() []tongo.AccountID {
return []tongo.AccountID{a.Contract, a.Executor}
}
Expand Down

0 comments on commit 36fe864

Please sign in to comment.