@@ -57,7 +57,7 @@ func FindNFTTransfer(bubble *Bubble) bool {
57
57
if ! ok {
58
58
return false
59
59
}
60
- if ! nftBubble .operation ("NftTransfer" ) {
60
+ if ! nftBubble .operation (abi . NftTransferMsgOp ) {
61
61
return false
62
62
}
63
63
transfer := nftBubble .decodedBody .Value .(abi.NftTransferMsgBody )
@@ -80,7 +80,7 @@ func FindNFTTransfer(bubble *Bubble) bool {
80
80
if ! ok {
81
81
return nil
82
82
}
83
- if ! tx .operation ("Excess" ) {
83
+ if ! tx .operation (abi . ExcessMsgOp ) {
84
84
return nil
85
85
}
86
86
newBubble .Fee .Add (child .Fee )
@@ -93,7 +93,7 @@ func FindNFTTransfer(bubble *Bubble) bool {
93
93
if ! ok {
94
94
return nil
95
95
}
96
- if ! tx .operation ("NftOwnershipAssigned" ) {
96
+ if ! tx .operation (abi . NftOwnershipAssignedMsgOp ) {
97
97
return nil
98
98
}
99
99
newBubble .Fee .Add (child .Fee )
@@ -147,7 +147,7 @@ func FindJettonTransfer(bubble *Bubble) bool {
147
147
if ! ok {
148
148
return false
149
149
}
150
- if ! jettonBubble .operation ("JettonTransfer" ) {
150
+ if ! jettonBubble .operation (abi . JettonTransferMsgOp ) {
151
151
return false
152
152
}
153
153
intention := jettonBubble .decodedBody .Value .(abi.JettonTransferMsgBody )
@@ -181,7 +181,7 @@ func FindJettonTransfer(bubble *Bubble) bool {
181
181
if ! ok {
182
182
return nil
183
183
}
184
- if ! tx .operation ("JettonInternalTransfer" ) {
184
+ if ! tx .operation (abi . JettonInternalTransferMsgOp ) {
185
185
return nil
186
186
}
187
187
if tx .success {
@@ -194,7 +194,7 @@ func FindJettonTransfer(bubble *Bubble) bool {
194
194
if ! ok {
195
195
return nil
196
196
}
197
- if ! tx .operation ("Excess" ) {
197
+ if ! tx .operation (abi . ExcessMsgOp ) {
198
198
return nil
199
199
}
200
200
return & Merge {children : excess .Children }
@@ -204,7 +204,7 @@ func FindJettonTransfer(bubble *Bubble) bool {
204
204
if ! ok {
205
205
return nil
206
206
}
207
- if ! tx .operation ("JettonNotify" ) {
207
+ if ! tx .operation (abi . JettonNotifyMsgOp ) {
208
208
return nil
209
209
}
210
210
transfer .success = true
0 commit comments