aboutsummaryrefslogtreecommitdiff
path: root/test/functional/walletbackup.py
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2017-06-07 11:54:39 -0400
committerJohn Newbery <john@johnnewbery.com>2017-06-29 11:16:32 +0100
commit37065d2ed2869aea5a83e69a0ef7a55c5d56724c (patch)
tree80546b50c01313b2dc6f6e42e7959c311a360bab /test/functional/walletbackup.py
parent90a002ea647dcea57a2ed4294eab77897168ba1d (diff)
downloadbitcoin-37065d2ed2869aea5a83e69a0ef7a55c5d56724c.tar.xz
[tests] remove unused imports from utils.py
Diffstat (limited to 'test/functional/walletbackup.py')
-rwxr-xr-xtest/functional/walletbackup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/walletbackup.py b/test/functional/walletbackup.py
index a4507182a2..ff51cba4b3 100755
--- a/test/functional/walletbackup.py
+++ b/test/functional/walletbackup.py
@@ -30,10 +30,11 @@ confirm 1/2/3/4 balances are same as before.
Shutdown again, restore using importwallet,
and confirm again balances are correct.
"""
+from random import randint
+import shutil
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
-from random import randint
class WalletBackupTest(BitcoinTestFramework):