Skip to content

Commit

Permalink
chore(protocol): remove unused constant and disable block commits (#380)
Browse files Browse the repository at this point in the history
  • Loading branch information
dantaik authored Dec 6, 2022
1 parent 80b99a4 commit a546ee9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/protocol/contracts/L1/TkoToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ contract TkoToken is EssentialContract, ERC20Upgradeable, IMintableERC20 {
function init(address _addressManager) external initializer {
EssentialContract._init(_addressManager);
ERC20Upgradeable.__ERC20_init({
name_: "Taiko Token",
symbol_: "TKO",
name_: "Taiko Test Token",
symbol_: "tTKO",
decimals_: 18
});
}
Expand Down
3 changes: 1 addition & 2 deletions packages/protocol/contracts/libs/LibConstants.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@ library LibConstants {
// This number is calculated from K_MAX_NUM_BLOCKS to make
// the 'the maximum value of the multiplier' close to 20.0
uint256 public constant K_ZKPROOFS_PER_BLOCK = 1;
uint256 public constant K_VERIFICATION_DELAY = 60 minutes;
uint256 public constant K_MAX_VERIFICATIONS_PER_TX = 20;
uint256 public constant K_COMMIT_DELAY_CONFIRMS = 4;
uint256 public constant K_COMMIT_DELAY_CONFIRMS = 0;
uint256 public constant K_MAX_PROOFS_PER_FORK_CHOICE = 5;
uint256 public constant K_BLOCK_MAX_GAS_LIMIT = 5000000; // TODO
uint256 public constant K_BLOCK_MAX_TXS = 20; // TODO
Expand Down

0 comments on commit a546ee9

Please sign in to comment.