aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Yanofsky <russ@yanofsky.org>2017-03-20 17:17:27 -0400
committerRussell Yanofsky <russ@yanofsky.org>2017-03-21 06:46:55 -0400
commitf85ac54e2429ad70c8bd4b2dbdf9d4107fd81f3f (patch)
treeb1a53093b3b47c4c143b7eaff722a2aeed87f26e
parent0b94e49831e8216f5ece840dd9ad410426237643 (diff)
downloadbitcoin-f85ac54e2429ad70c8bd4b2dbdf9d4107fd81f3f.tar.xz
[qa] Expand bumpfee test docstring
-rwxr-xr-xtest/functional/bumpfee.py12
1 files changed, 11 insertions, 1 deletions
diff --git a/test/functional/bumpfee.py b/test/functional/bumpfee.py
index 9628d1a506..172e414188 100755
--- a/test/functional/bumpfee.py
+++ b/test/functional/bumpfee.py
@@ -2,7 +2,17 @@
# Copyright (c) 2016 The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
-"""Test the bumpfee RPC."""
+"""Test the bumpfee RPC.
+
+Verifies that the bumpfee RPC creates replacement transactions successfully when
+its preconditions are met, and returns appropriate errors in other cases.
+
+This module consists of around a dozen individual test cases implemented in the
+top-level functions named as test_<test_case_description>. The test functions
+can be disabled or reordered if needed for debugging. If new test cases are
+added in the the future, they should try to follow the same convention and not
+make assumptions about execution order.
+"""
from segwit import send_to_witness
from test_framework.test_framework import BitcoinTestFramework