Skip to content

Commit 3682c47

Browse files
committed
minor fix
1 parent 7433429 commit 3682c47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/bath/bubble_tx.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func (b BubbleTx) ToAction() *Action {
5252
}
5353
return nil
5454
}
55-
if b.opCode != nil && (*b.opCode != 0 && !b.operation(abi.EncryptedTextCommentMsgOp)) && b.accountWasActiveAtComputingTime && !b.account.Is(abi.Wallet) && len(b.inputExtraAmount) == 0 {
55+
if b.opCode != nil && (*b.opCode != 0 && !b.operation(abi.EncryptedTextCommentMsgOp)) && b.accountWasActiveAtComputingTime && !b.account.Is(abi.Wallet) && b.inputAmount != 0 {
5656
operation := fmt.Sprintf("0x%08x", *b.opCode)
5757
payload := ""
5858
if b.decodedBody != nil {

0 commit comments

Comments
 (0)