diff options
author | John Newbery <john@johnnewbery.com> | 2017-06-07 11:54:39 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2017-06-29 11:16:32 +0100 |
commit | 37065d2ed2869aea5a83e69a0ef7a55c5d56724c (patch) | |
tree | 80546b50c01313b2dc6f6e42e7959c311a360bab /test/functional/walletbackup.py | |
parent | 90a002ea647dcea57a2ed4294eab77897168ba1d (diff) |
[tests] remove unused imports from utils.py
Diffstat (limited to 'test/functional/walletbackup.py')
-rwxr-xr-x | test/functional/walletbackup.py | 3 |
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): |