Merge #9532: Remove unused variables
90fd29b Remove unused int64_t nSinceLastSeen (practicalswift) ac4a095 Remove unused Python variables (practicalswift)
This commit is contained in:
parent
eb4c5bac6d
commit
767f5e436b
@ -84,7 +84,6 @@ def b58decode_chk(v):
|
|||||||
result = b58decode(v)
|
result = b58decode(v)
|
||||||
if result is None:
|
if result is None:
|
||||||
return None
|
return None
|
||||||
h3 = checksum(result[:-4])
|
|
||||||
if result[-4:] == checksum(result[:-4]):
|
if result[-4:] == checksum(result[:-4]):
|
||||||
return result[:-4]
|
return result[:-4]
|
||||||
else:
|
else:
|
||||||
|
@ -45,7 +45,6 @@ def is_valid(v):
|
|||||||
result = b58decode_chk(v)
|
result = b58decode_chk(v)
|
||||||
if result is None:
|
if result is None:
|
||||||
return False
|
return False
|
||||||
valid = False
|
|
||||||
for template in templates:
|
for template in templates:
|
||||||
prefix = str(bytearray(template[0]))
|
prefix = str(bytearray(template[0]))
|
||||||
suffix = str(bytearray(template[2]))
|
suffix = str(bytearray(template[2]))
|
||||||
|
@ -22,7 +22,7 @@ class ForkNotifyTest(BitcoinTestFramework):
|
|||||||
def setup_network(self):
|
def setup_network(self):
|
||||||
self.nodes = []
|
self.nodes = []
|
||||||
self.alert_filename = os.path.join(self.options.tmpdir, "alert.txt")
|
self.alert_filename = os.path.join(self.options.tmpdir, "alert.txt")
|
||||||
with open(self.alert_filename, 'w', encoding='utf8') as f:
|
with open(self.alert_filename, 'w', encoding='utf8'):
|
||||||
pass # Just open then close to create zero-length file
|
pass # Just open then close to create zero-length file
|
||||||
self.nodes.append(start_node(0, self.options.tmpdir,
|
self.nodes.append(start_node(0, self.options.tmpdir,
|
||||||
["-blockversion=2", "-alertnotify=echo %s >> \"" + self.alert_filename + "\""]))
|
["-blockversion=2", "-alertnotify=echo %s >> \"" + self.alert_filename + "\""]))
|
||||||
|
@ -14,7 +14,6 @@ def get_sub_array_from_array(object_array, to_match):
|
|||||||
Finds and returns a sub array from an array of arrays.
|
Finds and returns a sub array from an array of arrays.
|
||||||
to_match should be a unique idetifier of a sub array
|
to_match should be a unique idetifier of a sub array
|
||||||
'''
|
'''
|
||||||
num_matched = 0
|
|
||||||
for item in object_array:
|
for item in object_array:
|
||||||
all_match = True
|
all_match = True
|
||||||
for key,value in to_match.items():
|
for key,value in to_match.items():
|
||||||
@ -104,7 +103,7 @@ class ReceivedByTest(BitcoinTestFramework):
|
|||||||
received_by_account_json = get_sub_array_from_array(self.nodes[1].listreceivedbyaccount(),{"account":account})
|
received_by_account_json = get_sub_array_from_array(self.nodes[1].listreceivedbyaccount(),{"account":account})
|
||||||
if len(received_by_account_json) == 0:
|
if len(received_by_account_json) == 0:
|
||||||
raise AssertionError("No accounts found in node")
|
raise AssertionError("No accounts found in node")
|
||||||
balance_by_account = rec_by_accountArr = self.nodes[1].getreceivedbyaccount(account)
|
balance_by_account = self.nodes[1].getreceivedbyaccount(account)
|
||||||
|
|
||||||
txid = self.nodes[0].sendtoaddress(addr, 0.1)
|
txid = self.nodes[0].sendtoaddress(addr, 0.1)
|
||||||
self.sync_all()
|
self.sync_all()
|
||||||
|
@ -393,7 +393,6 @@ class ReplaceByFeeTest(BitcoinTestFramework):
|
|||||||
utxo = make_utxo(self.nodes[0], initial_nValue)
|
utxo = make_utxo(self.nodes[0], initial_nValue)
|
||||||
fee = int(0.0001*COIN)
|
fee = int(0.0001*COIN)
|
||||||
split_value = int((initial_nValue-fee)/(MAX_REPLACEMENT_LIMIT+1))
|
split_value = int((initial_nValue-fee)/(MAX_REPLACEMENT_LIMIT+1))
|
||||||
actual_fee = initial_nValue - split_value*(MAX_REPLACEMENT_LIMIT+1)
|
|
||||||
|
|
||||||
outputs = []
|
outputs = []
|
||||||
for i in range(MAX_REPLACEMENT_LIMIT+1):
|
for i in range(MAX_REPLACEMENT_LIMIT+1):
|
||||||
|
@ -360,7 +360,6 @@ class WalletTest (BitcoinTestFramework):
|
|||||||
rawtx = self.nodes[0].createrawtransaction([{"txid":singletxid, "vout":0}], {chain_addrs[0]:node0_balance/2-Decimal('0.01'), chain_addrs[1]:node0_balance/2-Decimal('0.01')})
|
rawtx = self.nodes[0].createrawtransaction([{"txid":singletxid, "vout":0}], {chain_addrs[0]:node0_balance/2-Decimal('0.01'), chain_addrs[1]:node0_balance/2-Decimal('0.01')})
|
||||||
signedtx = self.nodes[0].signrawtransaction(rawtx)
|
signedtx = self.nodes[0].signrawtransaction(rawtx)
|
||||||
singletxid = self.nodes[0].sendrawtransaction(signedtx["hex"])
|
singletxid = self.nodes[0].sendrawtransaction(signedtx["hex"])
|
||||||
txids = [singletxid, singletxid]
|
|
||||||
self.nodes[0].generate(1)
|
self.nodes[0].generate(1)
|
||||||
|
|
||||||
# Make a long chain of unconfirmed payments without hitting mempool limit
|
# Make a long chain of unconfirmed payments without hitting mempool limit
|
||||||
|
@ -54,11 +54,8 @@ double CAddrInfo::GetChance(int64_t nNow) const
|
|||||||
{
|
{
|
||||||
double fChance = 1.0;
|
double fChance = 1.0;
|
||||||
|
|
||||||
int64_t nSinceLastSeen = nNow - nTime;
|
|
||||||
int64_t nSinceLastTry = nNow - nLastTry;
|
int64_t nSinceLastTry = nNow - nLastTry;
|
||||||
|
|
||||||
if (nSinceLastSeen < 0)
|
|
||||||
nSinceLastSeen = 0;
|
|
||||||
if (nSinceLastTry < 0)
|
if (nSinceLastTry < 0)
|
||||||
nSinceLastTry = 0;
|
nSinceLastTry = 0;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user