From 36fe864088294f5141e24af0da317a653e0e98a9 Mon Sep 17 00:00:00 2001 From: Alexey Kostenko Date: Wed, 11 Dec 2024 12:20:17 +0300 Subject: [PATCH] fix --- pkg/bath/actions.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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} }