diff --git a/pkg/bath/actions.go b/pkg/bath/actions.go index 939af871..771d8881 100644 --- a/pkg/bath/actions.go +++ b/pkg/bath/actions.go @@ -110,7 +110,6 @@ type ( EncryptedComment *EncryptedComment Recipient tongo.AccountID Sender tongo.AccountID - Refund *Refund } SmartContractAction struct { TonAttached int64 @@ -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} }