diff options
author | Sjors Provoost <sjors@sprovoost.nl> | 2018-03-01 10:40:36 +0100 |
---|---|---|
committer | Sjors Provoost <sjors@sprovoost.nl> | 2018-03-01 10:40:36 +0100 |
commit | e7d9fc5c5316a63917e076ca58a0b552ea0d56ae (patch) | |
tree | ba6d8fe20433a696f1c8781a99d3e25e2e173d3c /src/qt/bitcoin.cpp | |
parent | c997f8808256521397f1c003bb1e9896fee6eaa0 (diff) |
[qt] navigate to transaction history page after send
The transaction will be selected. When sending to multiple
destinations, all will be selected (thanks @promag).
Diffstat (limited to 'src/qt/bitcoin.cpp')
-rw-r--r-- | src/qt/bitcoin.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 06e1f1a37c..ab381bfb5d 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -29,6 +29,7 @@ #include <init.h> #include <rpc/server.h> #include <ui_interface.h> +#include <uint256.h> #include <util.h> #include <warnings.h> @@ -80,6 +81,7 @@ Q_IMPORT_PLUGIN(QCocoaIntegrationPlugin); // Declare meta types used for QMetaObject::invokeMethod Q_DECLARE_METATYPE(bool*) Q_DECLARE_METATYPE(CAmount) +Q_DECLARE_METATYPE(uint256) static void InitMessage(const std::string &message) { |