diff options
| author | Jonas Schnelli <[email protected]> | 2017-02-01 09:12:13 +0100 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2017-03-24 10:28:41 +0100 |
| commit | 1b3b5c6f8fa6aff93935319888bf0cfd242359dd (patch) | |
| tree | a1ee725f13afa10baaad7ddd99873786235e67e7 | |
| parent | Remove FEATURE_HD_SPLIT bump TODO (diff) | |
| download | discoin-1b3b5c6f8fa6aff93935319888bf0cfd242359dd.tar.xz discoin-1b3b5c6f8fa6aff93935319888bf0cfd242359dd.zip | |
Slightly modify fundrawtransaction.py test (change getnewaddress() into getrawchangeaddress())
| -rwxr-xr-x | test/functional/fundrawtransaction.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/fundrawtransaction.py b/test/functional/fundrawtransaction.py index 6bb7d7f33..69f2c29f5 100755 --- a/test/functional/fundrawtransaction.py +++ b/test/functional/fundrawtransaction.py @@ -646,7 +646,7 @@ class RawTransactionsTest(BitcoinTestFramework): if out['value'] > 1.0: changeaddress += out['scriptPubKey']['addresses'][0] assert(changeaddress != "") - nextaddr = self.nodes[3].getnewaddress() + nextaddr = self.nodes[3].getrawchangeaddress() # frt should not have removed the key from the keypool assert(changeaddress == nextaddr) |