Return the private key matching an address
(self, addr)
| 376 | return self._call(service_name, *args) |
| 377 | |
| 378 | def dumpprivkey(self, addr): |
| 379 | """Return the private key matching an address |
| 380 | """ |
| 381 | r = self._call('dumpprivkey', str(addr)) |
| 382 | |
| 383 | return CBitcoinSecret(r) |
| 384 | |
| 385 | def fundrawtransaction(self, tx, include_watching=False): |
| 386 | """Add inputs to a transaction until it has enough in value to meet its out value. |
nothing calls this directly
no test coverage detected