Returns a new Bitcoin address, for receiving change. This is for use with raw transactions, NOT normal use.
(self)
| 551 | return CBitcoinAddress(r) |
| 552 | |
| 553 | def getrawchangeaddress(self): |
| 554 | """Returns a new Bitcoin address, for receiving change. |
| 555 | |
| 556 | This is for use with raw transactions, NOT normal use. |
| 557 | """ |
| 558 | r = self._call('getrawchangeaddress') |
| 559 | return CBitcoinAddress(r) |
| 560 | |
| 561 | def getrawmempool(self, verbose=False): |
| 562 | """Return the mempool""" |
nothing calls this directly
no test coverage detected