Skip to content

Commit

Permalink
Reorganize Validator struct fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike-CZ committed Oct 31, 2024
1 parent 5e22990 commit c236915
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/interfaces/ISFC.sol
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ interface ISFC {
returns (
uint256 status,
uint256 receivedStake,
address auth,
uint256 createdEpoch,
uint256 createdTime,
address auth,
uint256 deactivatedTime,
uint256 deactivatedEpoch
);
Expand Down
2 changes: 1 addition & 1 deletion contracts/sfc/SFC.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ contract SFC is Initializable, Ownable, Version {
struct Validator {
uint256 status;
uint256 receivedStake; // from all delegators (weight of the validator)
address auth; // self-stake delegator
uint256 createdEpoch;
uint256 createdTime;
address auth; // self-stake delegator
uint256 deactivatedTime;
uint256 deactivatedEpoch;
}
Expand Down

0 comments on commit c236915

Please sign in to comment.