From 1c65e085952781b76a35902df4e2c7fe7ac21585 Mon Sep 17 00:00:00 2001 From: Alexander Block Date: Wed, 25 Sep 2019 10:45:53 +0200 Subject: [PATCH] Fix "os" import in wallet-dump.py This is now needed as we don't use "from test_framework.util import *" anymore. --- test/functional/wallet-dump.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/functional/wallet-dump.py b/test/functional/wallet-dump.py index 68452f5cbf..5fa87508f8 100755 --- a/test/functional/wallet-dump.py +++ b/test/functional/wallet-dump.py @@ -3,6 +3,7 @@ # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. """Test the dumpwallet RPC.""" +import os import sys from test_framework.test_framework import BitcoinTestFramework