tremove deprecated command: getutxoaddress - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 84962ea6f1090a8310d99eb78fcb92b91ef7fa00 DIR parent 93e577e0cb01edcc22e86e081a0e383fa4c54fe1 HTML Author: ThomasV <thomasv@electrum.org> Date: Wed, 6 Sep 2017 15:05:33 +0200 remove deprecated command: getutxoaddress Diffstat: M lib/commands.py | 8 -------- 1 file changed, 0 insertions(+), 8 deletions(-) --- DIR diff --git a/lib/commands.py b/lib/commands.py t@@ -197,14 +197,6 @@ class Commands: """ return self.network.synchronous_get(('blockchain.address.listunspent', [address])) - @command('n') - def getutxoaddress(self, txid, pos): - """Get the address of a UTXO. Note: This is a walletless server query, results are - not checked by SPV. - """ - r = self.network.synchronous_get(('blockchain.utxo.get_address', [txid, pos])) - return {'address': r} - @command('') def serialize(self, jsontx): """Create a transaction from json inputs.