Browse Source

Update cryptoconditions_rewards.py

pull/28/head
smk762 5 years ago
committed by GitHub
parent
commit
5aa85d7dad
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      qa/rpc-tests/cryptoconditions_rewards.py

2
qa/rpc-tests/cryptoconditions_rewards.py

@ -19,13 +19,11 @@ class CryptoconditionsRewardsTest(CryptoconditionsTestFramework):
rpc = self.nodes[0]
result = rpc.rewardsaddress()
for x in result.keys():
if x.find('ddress') > 0:
assert_equal(result[x][0], 'R')
result = rpc.rewardsaddress(self.pubkey)
for x in result.keys():
if x.find('ddress') > 0:
assert_equal(result[x][0], 'R')

Loading…
Cancel
Save