mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-01 18:56:23 -04:00
exclude not serialised member from operator== for RsNxsTransac
This commit is contained in:
parent
a8b2bc776e
commit
a6a3d66a83
1 changed files with 2 additions and 1 deletions
|
@ -282,7 +282,8 @@ bool operator==(const RsNxsTransac& l, const RsNxsTransac& r){
|
|||
|
||||
if(l.transactFlag != r.transactFlag) return false;
|
||||
if(l.transactionNumber != r.transactionNumber) return false;
|
||||
if(l.timestamp != r.timestamp) return false;
|
||||
// timestamp is not serialised, see rsnxsitems.h
|
||||
//if(l.timestamp != r.timestamp) return false;
|
||||
if(l.nItems != r.nItems) return false;
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue