Skip to content

Commit

Permalink
feat(account): safer params
Browse files Browse the repository at this point in the history
  • Loading branch information
shotaronowhere committed Jun 20, 2022
1 parent cf947c9 commit 0c69a95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/interfaces/ICoreKleros.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ pragma solidity ^0.8.0;
interface ICore{

struct Account {
uint88 stakedTokens; // The account's total amount of tokens staked in subpools.
uint96 stakedTokens; // The account's total amount of tokens staked in subpools.
uint88 lockedTokens; // The account's total amount of tokens locked.
uint48 index; // indexing the account
uint40 index; // indexing the account
uint32 time; // The time when the juror staked
}

Expand Down

0 comments on commit 0c69a95

Please sign in to comment.