Skip to content

Commit

Permalink
Merge pull request #196 from avasilevichaet/feature/i92-contracts-upg…
Browse files Browse the repository at this point in the history
…rade

Feature/i92 contracts upgrade
  • Loading branch information
SurfingNerd authored Dec 13, 2023
2 parents 4ba1b6b + a536385 commit 62d417d
Show file tree
Hide file tree
Showing 9 changed files with 75 additions and 446 deletions.
4 changes: 4 additions & 0 deletions contracts/TxPermissionHbbft.sol
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,10 @@ contract TxPermissionHbbft is Initializable, OwnableUpgradeable, ITxPermission {
blockGasLimit = _value;
}

function setConnectivityTracker(address _connectivityTracker) external onlyOwner {
connectivityTracker = IConnectivityTrackerHbbft(_connectivityTracker);
}

// =============================================== Getters ========================================================

/// @dev Returns the contract's name recognizable by node's engine.
Expand Down
2 changes: 1 addition & 1 deletion contracts/base/BlockRewardHbbftBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -705,5 +705,5 @@ contract BlockRewardHbbftBase is Initializable, OwnableUpgradeable, IBlockReward
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[48] private __gap;
uint256[49] private __gap;
}
Loading

0 comments on commit 62d417d

Please sign in to comment.