diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-05-17 10:38:26 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-05-17 10:40:11 +0100 |
commit | a2566db09e45311f7af60a962c3bfd4cd4fef537 (patch) | |
tree | 4734213e4596277422853ad8cbc1a52bc9245b83 /src | |
parent | epee: log type name when a container size check fails (diff) | |
download | monero-a2566db09e45311f7af60a962c3bfd4cd4fef537.tar.xz |
object_sizes: add a few useful types
Diffstat (limited to 'src')
-rw-r--r-- | src/debug_utilities/object_sizes.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/debug_utilities/object_sizes.cpp b/src/debug_utilities/object_sizes.cpp index a3d037a59..ab8839636 100644 --- a/src/debug_utilities/object_sizes.cpp +++ b/src/debug_utilities/object_sizes.cpp @@ -94,6 +94,11 @@ int main(int argc, char* argv[]) SL(nodetool::node_server<cryptonote::t_cryptonote_protocol_handler<cryptonote::core>>); SL(nodetool::p2p_connection_context_t<cryptonote::t_cryptonote_protocol_handler<cryptonote::core>::connection_context>); SL(nodetool::network_address_old); + SL(nodetool::peerlist_entry_base<nodetool::network_address_old>); + + SL(nodetool::network_config); + SL(nodetool::basic_node_data); + SL(cryptonote::CORE_SYNC_DATA); SL(tools::wallet2::transfer_details); SL(tools::wallet2::payment_details); |