Skip to content

Commit

Permalink
fix: unlockTime should return THAWING_PERIOD times two
Browse files Browse the repository at this point in the history
  • Loading branch information
kyriediculous committed Apr 2, 2024
1 parent f29eecb commit eb58570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/adapters/GraphAdapter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ contract GraphAdapter is Adapter {
}

function unlockTime() external view override returns (uint256) {
return GRAPH_STAKING.thawingPeriod();
return GRAPH_STAKING.thawingPeriod() * 2;
}

function currentTime() external view override returns (uint256) {
Expand Down

0 comments on commit eb58570

Please sign in to comment.