diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2021-09-23 22:10:03 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2021-09-23 22:10:03 -0500 |
| commit | 298c9a357f6e57eccf28db1f3e734eb6da080d9a (patch) | |
| tree | cece5d9e4c744a8c115c255b89cc3ff0c4d9b0ef /src/cryptonote_basic | |
| parent | 237acd120e0da39913bd7b195e2309eff06d639e (diff) | |
| parent | dfee15eee18a97be5a8fb9822527f98ebd1b33e9 (diff) | |
| download | monzero-core-298c9a357f6e57eccf28db1f3e734eb6da080d9a.tar.gz monzero-core-298c9a357f6e57eccf28db1f3e734eb6da080d9a.tar.xz monzero-core-298c9a357f6e57eccf28db1f3e734eb6da080d9a.zip | |
Merge pull request #7891
dfee15e RPC and ZeroMQ APIs to support p2pool (SChernykh)
Diffstat (limited to 'src/cryptonote_basic')
| -rw-r--r-- | src/cryptonote_basic/cryptonote_basic.h | 1 | ||||
| -rw-r--r-- | src/cryptonote_basic/events.h | 2 | ||||
| -rw-r--r-- | src/cryptonote_basic/fwd.h | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/src/cryptonote_basic/cryptonote_basic.h b/src/cryptonote_basic/cryptonote_basic.h index 6394a7071..d111f6f32 100644 --- a/src/cryptonote_basic/cryptonote_basic.h +++ b/src/cryptonote_basic/cryptonote_basic.h @@ -49,6 +49,7 @@ #include "misc_language.h" #include "ringct/rctTypes.h" #include "device/device.hpp" +#include "cryptonote_basic/fwd.h" namespace cryptonote { diff --git a/src/cryptonote_basic/events.h b/src/cryptonote_basic/events.h index 6c6742215..3417ece8c 100644 --- a/src/cryptonote_basic/events.h +++ b/src/cryptonote_basic/events.h @@ -41,6 +41,8 @@ namespace cryptonote { cryptonote::transaction tx; crypto::hash hash; + uint64_t blob_size; + uint64_t weight; bool res; //!< Listeners must ignore `tx` when this is false. }; } diff --git a/src/cryptonote_basic/fwd.h b/src/cryptonote_basic/fwd.h index d54223461..901ad151b 100644 --- a/src/cryptonote_basic/fwd.h +++ b/src/cryptonote_basic/fwd.h @@ -33,4 +33,5 @@ namespace cryptonote struct block; class transaction; struct txpool_event; + struct tx_block_template_backlog_entry; } |
