We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aff2734 commit 36fe864Copy full SHA for 36fe864
pkg/bath/actions.go
@@ -110,7 +110,6 @@ type (
110
EncryptedComment *EncryptedComment
111
Recipient tongo.AccountID
112
Sender tongo.AccountID
113
- Refund *Refund
114
}
115
SmartContractAction struct {
116
TonAttached int64
@@ -351,6 +350,10 @@ func (a *TonTransferAction) SubjectAccounts() []tongo.AccountID {
351
350
return []tongo.AccountID{a.Sender, a.Recipient}
352
353
+func (a *ExtraCurrencyTransferAction) SubjectAccounts() []tongo.AccountID {
354
+ return []tongo.AccountID{a.Sender, a.Recipient}
355
+}
356
+
357
func (a *SmartContractAction) SubjectAccounts() []tongo.AccountID {
358
return []tongo.AccountID{a.Contract, a.Executor}
359
0 commit comments