add release notes
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
# Release 2.5.2 (bugfixes)
|
||||||
|
* fix bug #1513 (client tries to broadcast transaction while not connected)
|
||||||
|
* fix synchronization bug (#1520)
|
||||||
|
* fix command line bug (#1494)
|
||||||
|
* fixes for exchange rate plugin
|
||||||
|
|
||||||
# Release 2.5.1 (bugfixes)
|
# Release 2.5.1 (bugfixes)
|
||||||
* signatures in transactions were still using the old class
|
* signatures in transactions were still using the old class
|
||||||
* make sure that setup.py uses python2
|
* make sure that setup.py uses python2
|
||||||
|
|||||||
@@ -101,6 +101,7 @@ class Commands:
|
|||||||
@command('')
|
@command('')
|
||||||
def create(self):
|
def create(self):
|
||||||
"""Create a new wallet"""
|
"""Create a new wallet"""
|
||||||
|
raise BaseException('Not a JSON-RPC command')
|
||||||
|
|
||||||
@command('wn')
|
@command('wn')
|
||||||
def restore(self, text):
|
def restore(self, text):
|
||||||
@@ -108,15 +109,18 @@ class Commands:
|
|||||||
public key, a master private key, a list of bitcoin addresses
|
public key, a master private key, a list of bitcoin addresses
|
||||||
or bitcoin private keys. If you want to be prompted for your
|
or bitcoin private keys. If you want to be prompted for your
|
||||||
seed, type '?' or ':' (concealed) """
|
seed, type '?' or ':' (concealed) """
|
||||||
|
raise BaseException('Not a JSON-RPC command')
|
||||||
|
|
||||||
@command('w')
|
@command('w')
|
||||||
def deseed(self):
|
def deseed(self):
|
||||||
"""Remove seed from wallet. This creates a seedless, watching-only
|
"""Remove seed from wallet. This creates a seedless, watching-only
|
||||||
wallet."""
|
wallet."""
|
||||||
|
raise BaseException('Not a JSON-RPC command')
|
||||||
|
|
||||||
@command('wp')
|
@command('wp')
|
||||||
def password(self):
|
def password(self):
|
||||||
"""Change wallet password. """
|
"""Change wallet password. """
|
||||||
|
raise BaseException('Not a JSON-RPC command')
|
||||||
|
|
||||||
@command('')
|
@command('')
|
||||||
def getconfig(self, key):
|
def getconfig(self, key):
|
||||||
|
|||||||
Reference in New Issue
Block a user