diff options
| author | practicalswift <[email protected]> | 2017-07-20 23:21:41 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-08-28 15:18:14 +0200 |
| commit | 8239794360587d46895150b90172c36fec16d13f (patch) | |
| tree | 3a2db386caba9d0af7fdf6f6879a880839c82106 /test/functional/mempool_packages.py | |
| parent | Remove unused variables and/or function calls (diff) | |
| download | discoin-8239794360587d46895150b90172c36fec16d13f.tar.xz discoin-8239794360587d46895150b90172c36fec16d13f.zip | |
Use the variable name _ for unused return values
Diffstat (limited to 'test/functional/mempool_packages.py')
| -rwxr-xr-x | test/functional/mempool_packages.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/mempool_packages.py b/test/functional/mempool_packages.py index e22549381..423d03eac 100755 --- a/test/functional/mempool_packages.py +++ b/test/functional/mempool_packages.py @@ -213,7 +213,7 @@ class MempoolPackagesTest(BitcoinTestFramework): value = send_value # Create tx1 - (tx1_id, tx1_value) = self.chain_transaction(self.nodes[0], tx0_id, 0, value, fee, 1) + tx1_id, _ = self.chain_transaction(self.nodes[0], tx0_id, 0, value, fee, 1) # Create tx2-7 vout = 1 |