diff --git a/README.md b/README.md index fd5ebba..db9b9c4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# bitcoind-ncurses2 v0.3.0 +# bitcoind-ncurses2 v0.3.1 Python ncurses front-end for bitcoind. Uses the JSON-RPC API. @@ -17,6 +17,7 @@ Python ncurses front-end for bitcoind. Uses the JSON-RPC API. * Current block information: hash, height, fees, timestamp, age, diff, ... * Basic block explorer with fast seeking, no external DB required * Basic transaction viewer with fast seeking, best with -txindex=1 +* Ability to query blocks by hash, height; transactions by txid * Wallet transaction and balance viewer * Charting network monitor * Peer/connection information diff --git a/macros.py b/macros.py index 3610e41..2f47c81 100644 --- a/macros.py +++ b/macros.py @@ -2,7 +2,7 @@ # Distributed under the MIT software license, see the accompanying # file COPYING or https://opensource.org/licenses/mit-license.php -VERSION_STRING = "bitcoind-ncurses v0.3.0" +VERSION_STRING = "bitcoind-ncurses v0.3.1" MODES = ["monitor", "peers", "wallet", "block", "transaction", "console", "net"] DEFAULT_MODE = "monitor"