MCPcopy Index your code
hub / github.com/petertodd/python-bitcoinlib / getrawchangeaddress

Method getrawchangeaddress

bitcoin/rpc.py:553–559  ·  view source on GitHub ↗

Returns a new Bitcoin address, for receiving change. This is for use with raw transactions, NOT normal use.

(self)

Source from the content-addressed store, hash-verified

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"""

Callers

nothing calls this directly

Calls 2

CBitcoinAddressClass · 0.90
_callMethod · 0.45

Tested by

no test coverage detected