change 100 to 10 seconds timeout for double transaction

This commit is contained in:
einhornimmond 2021-06-14 14:12:29 +02:00
parent 91887508e8
commit a3fd334674

View File

@ -647,8 +647,8 @@ namespace model {
delete own_body_updated; delete own_body_updated;
// if they are more than 100 seconds between transaction they consider as not the same // if they are more than 10 seconds between transaction they consider as not the same
if (abs(timeDiff) > 100) { if (abs(timeDiff) > 10) {
return false; return false;
} }