Merge pull request #6827
bd4c22e
[rpc-tests] Check return code (MarcoFalke)0d8b175
[rpc-tests] fundrawtransaction: Update fee after minRelayTxFee increase (MarcoFalke)
This commit is contained in:
commit
87e5539e9c
2 changed files with 11 additions and 3 deletions
|
@ -101,7 +101,7 @@ if(ENABLE_WALLET == 1 and ENABLE_UTILS == 1 and ENABLE_BITCOIND == 1):
|
||||||
if (len(opts) == 0 or (len(opts) == 1 and "-win" in opts ) or '-extended' in opts
|
if (len(opts) == 0 or (len(opts) == 1 and "-win" in opts ) or '-extended' in opts
|
||||||
or testScripts[i] in opts or re.sub(".py$", "", testScripts[i]) in opts ):
|
or testScripts[i] in opts or re.sub(".py$", "", testScripts[i]) in opts ):
|
||||||
print "Running testscript " + testScripts[i] + "..."
|
print "Running testscript " + testScripts[i] + "..."
|
||||||
subprocess.call(rpcTestDir + testScripts[i] + " --srcdir " + buildDir + '/src ' + passOn,shell=True)
|
subprocess.check_call(rpcTestDir + testScripts[i] + " --srcdir " + buildDir + '/src ' + passOn,shell=True)
|
||||||
#exit if help is called so we print just one set of instructions
|
#exit if help is called so we print just one set of instructions
|
||||||
p = re.compile(" -h| --help")
|
p = re.compile(" -h| --help")
|
||||||
if p.match(passOn):
|
if p.match(passOn):
|
||||||
|
@ -112,6 +112,6 @@ if(ENABLE_WALLET == 1 and ENABLE_UTILS == 1 and ENABLE_BITCOIND == 1):
|
||||||
if ('-extended' in opts or testScriptsExt[i] in opts
|
if ('-extended' in opts or testScriptsExt[i] in opts
|
||||||
or re.sub(".py$", "", testScriptsExt[i]) in opts):
|
or re.sub(".py$", "", testScriptsExt[i]) in opts):
|
||||||
print "Running 2nd level testscript " + testScriptsExt[i] + "..."
|
print "Running 2nd level testscript " + testScriptsExt[i] + "..."
|
||||||
subprocess.call(rpcTestDir + testScriptsExt[i] + " --srcdir " + buildDir + '/src ' + passOn,shell=True)
|
subprocess.check_call(rpcTestDir + testScriptsExt[i] + " --srcdir " + buildDir + '/src ' + passOn,shell=True)
|
||||||
else:
|
else:
|
||||||
print "No rpc tests to run. Wallet, utils, and bitcoind must all be enabled"
|
print "No rpc tests to run. Wallet, utils, and bitcoind must all be enabled"
|
||||||
|
|
|
@ -28,7 +28,15 @@ class RawTransactionsTest(BitcoinTestFramework):
|
||||||
|
|
||||||
def run_test(self):
|
def run_test(self):
|
||||||
print "Mining blocks..."
|
print "Mining blocks..."
|
||||||
feeTolerance = Decimal(0.00000002) #if the fee's positive delta is higher than this value tests will fail, neg. delta always fail the tests
|
|
||||||
|
min_relay_tx_fee = self.nodes[0].getnetworkinfo()['relayfee']
|
||||||
|
# if the fee's positive delta is higher than this value tests will fail,
|
||||||
|
# neg. delta always fail the tests.
|
||||||
|
# The size of the signature of every input may be at most 2 bytes larger
|
||||||
|
# than a minimum sized signature.
|
||||||
|
|
||||||
|
# = 2 bytes * minRelayTxFeePerByte
|
||||||
|
feeTolerance = 2 * min_relay_tx_fee/1000
|
||||||
|
|
||||||
self.nodes[2].generate(1)
|
self.nodes[2].generate(1)
|
||||||
self.sync_all()
|
self.sync_all()
|
||||||
|
|
Loading…
Reference in a new issue