Эх сурвалжийг харах

Merge pull request #442 from KeefeL/diff_accouts

ignore empty tx in GetDiffAccountsWithScope
KeefeL 4 жил өмнө
parent
commit
59d3b537a5

+ 4 - 1
internal/ethapi/api.go

@@ -1185,7 +1185,10 @@ func (s *PublicBlockChainAPI) GetDiffAccountsWithScope(ctx context.Context, bloc
 					delete(diffTx.Accounts, account)
 				}
 			}
-			result.Transactions = append(result.Transactions, diffTx)
+
+			if len(diffTx.Accounts) != 0 {
+				result.Transactions = append(result.Transactions, diffTx)
+			}
 		}
 	}