diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-11-04 20:44:49 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-11-04 20:44:49 +0200 |
commit | 0c7086bf7f93f65915b87b1897b9d291303c339f (patch) | |
tree | c5bbcf9ee66f08084c98d662a49b3ff6db70aece /src/rpc/message_data_structs.h | |
parent | Merge pull request #4686 (diff) | |
parent | Update ZMQ fee estimate and add ZMQ output distribution (diff) | |
download | monero-0c7086bf7f93f65915b87b1897b9d291303c339f.tar.xz |
Merge pull request #4687
6097472a Update ZMQ fee estimate and add ZMQ output distribution (Lee Clagett)
Diffstat (limited to 'src/rpc/message_data_structs.h')
-rw-r--r-- | src/rpc/message_data_structs.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/rpc/message_data_structs.h b/src/rpc/message_data_structs.h index cf15ade1c..3b56aff15 100644 --- a/src/rpc/message_data_structs.h +++ b/src/rpc/message_data_structs.h @@ -31,6 +31,7 @@ #include "crypto/hash.h" #include "cryptonote_basic/cryptonote_basic.h" #include "ringct/rctSigs.h" +#include "rpc/rpc_handler.h" #include <unordered_map> #include <vector> @@ -192,6 +193,12 @@ namespace rpc uint64_t start_time; }; + struct output_distribution + { + output_distribution_data data; + uint64_t amount; + bool cumulative; + }; } // namespace rpc } // namespace cryptonote |