mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
exclude not serialised member from operator== for RsNxsTransac
This commit is contained in:
parent
a8b2bc776e
commit
a6a3d66a83
@ -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…
Reference in New Issue
Block a user