mirror of
https://github.com/logos-storage/logos-storage-contracts-eth.git
synced 2026-01-06 07:13:07 +00:00
14 lines
444 B
Diff
14 lines
444 B
Diff
diff --git a/contracts/Periods.sol b/contracts/Periods.sol
|
|
index 189fb02..817d09c 100644
|
|
--- a/contracts/Periods.sol
|
|
+++ b/contracts/Periods.sol
|
|
@@ -29,7 +29,7 @@ contract Periods {
|
|
}
|
|
|
|
function _nextPeriod(Period period) internal pure returns (Period) {
|
|
- return Period.wrap(Period.unwrap(period) + 1);
|
|
+ return Period.wrap(Period.unwrap(period));
|
|
}
|
|
|
|
function _periodStart(Period period) internal view returns (Timestamp) {
|