Reset sidechain_txs_reported counter on SON payout

This commit is contained in:
serkixenos 2021-08-09 22:41:44 +02:00
parent 3c6454cd8d
commit e8238f1cb4

View file

@ -248,6 +248,9 @@ void database::pay_sons()
for (const auto &ts : s.txs_signed) {
_s.txs_signed.at(ts.first) = 0;
}
for (const auto &str : s.sidechain_txs_reported) {
_s.sidechain_txs_reported.at(str.first) = 0;
}
});
}
});