We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16a2f93 commit 63b5840Copy full SHA for 63b5840
qa/replace-by-fee/rbf-tests.py
@@ -10,8 +10,9 @@
10
import os
11
import sys
12
13
-# Add python-bitcoinlib to module search path:
14
-sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), "python-bitcoinlib"))
+# Add python-bitcoinlib to module search path, prior to any system-wide
+# python-bitcoinlib.
15
+sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), "python-bitcoinlib"))
16
17
import unittest
18
0 commit comments