Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/i92 contracts upgrade #196

Merged
merged 8 commits into from Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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