ups
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
Release Drafter / Update release notes draft (pull_request) Successful in 3s

This commit is contained in:
bumi 2023-08-24 14:46:53 +02:00
parent f9e2312846
commit 2ba9a95fcd

View File

@ -112,12 +112,12 @@ contract Reimbursement is Initializable {
r.hashSize = hashSize;
if (confirmedAtBlock > 0) {
c.confirmedAtBlock = confirmedAtBlock;
r.confirmedAtBlock = confirmedAtBlock;
} else {
c.confirmedAtBlock = block.number + 1 + blocksToWait;
r.confirmedAtBlock = block.number + 1 + blocksToWait;
}
if (vetoed) { c.vetoed = true; }
if (vetoed) { r.vetoed = true; }
reimbursementsCount++;