Skip to content

Commit 36fe864

Browse files
committed
fix
1 parent aff2734 commit 36fe864

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pkg/bath/actions.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ type (
110110
EncryptedComment *EncryptedComment
111111
Recipient tongo.AccountID
112112
Sender tongo.AccountID
113-
Refund *Refund
114113
}
115114
SmartContractAction struct {
116115
TonAttached int64
@@ -351,6 +350,10 @@ func (a *TonTransferAction) SubjectAccounts() []tongo.AccountID {
351350
return []tongo.AccountID{a.Sender, a.Recipient}
352351
}
353352

353+
func (a *ExtraCurrencyTransferAction) SubjectAccounts() []tongo.AccountID {
354+
return []tongo.AccountID{a.Sender, a.Recipient}
355+
}
356+
354357
func (a *SmartContractAction) SubjectAccounts() []tongo.AccountID {
355358
return []tongo.AccountID{a.Contract, a.Executor}
356359
}

0 commit comments

Comments
 (0)