Electroneum
cryptonote::account_public_address Struct Reference

#include <cryptonote_basic.h>

Public Member Functions

bool operator== (const account_public_address &rhs) const
 
bool operator!= (const account_public_address &rhs) const
 

Public Attributes

crypto::public_key m_spend_public_key
 
crypto::public_key m_view_public_key
 

Detailed Description

Definition at line 68 of file cryptonote_basic.h.

Member Function Documentation

◆ operator!=()

bool cryptonote::account_public_address::operator!= ( const account_public_address rhs) const
inline

Definition at line 89 of file cryptonote_basic.h.

90  {
91  return !(*this == rhs);
92  }

◆ operator==()

bool cryptonote::account_public_address::operator== ( const account_public_address rhs) const
inline

Definition at line 83 of file cryptonote_basic.h.

84  {
85  return m_spend_public_key == rhs.m_spend_public_key &&
86  m_view_public_key == rhs.m_view_public_key;
87  }

Member Data Documentation

◆ m_spend_public_key

crypto::public_key cryptonote::account_public_address::m_spend_public_key

Definition at line 70 of file cryptonote_basic.h.

◆ m_view_public_key

crypto::public_key cryptonote::account_public_address::m_view_public_key

Definition at line 71 of file cryptonote_basic.h.


The documentation for this struct was generated from the following file: