From ef5fb6a93c4087753afc1cff275e3a1d0a60d165 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Thu, 13 Feb 2020 12:32:37 +0000 Subject: [PATCH] test: Fix pyflakes warnings --- qa/rpc-tests/wallet_listreceived.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/qa/rpc-tests/wallet_listreceived.py b/qa/rpc-tests/wallet_listreceived.py index fb0019215..a3da3d8ef 100755 --- a/qa/rpc-tests/wallet_listreceived.py +++ b/qa/rpc-tests/wallet_listreceived.py @@ -59,7 +59,6 @@ class ListReceivedTest (BitcoinTestFramework): assert_equal(pt['outputs'][0]['js'], 0) jsOutputPrev = pt['outputs'][0]['jsOutput'] elif pt['outputs'][0]['address'] == zaddr1: - outputPrev = pt['outputs'][0]['output'] assert_equal(pt['outputs'][0]['outgoing'], False) assert_equal(pt['outputs'][0]['memoStr'], my_memo_str) else: @@ -74,7 +73,6 @@ class ListReceivedTest (BitcoinTestFramework): if release != 'sprout': assert_equal(pt['outputs'][1]['type'], release) if pt['outputs'][1]['address'] == zaddr1: - outputPrev = pt['outputs'][1]['output'] assert_equal(pt['outputs'][1]['outgoing'], False) assert_equal(pt['outputs'][1]['memoStr'], my_memo_str) else: