mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 23:26:44 +00:00
15 lines
No EOL
374 B
Solidity
15 lines
No EOL
374 B
Solidity
pragma solidity 0.5.9;
|
|
|
|
interface ValidatorSet {
|
|
/// Get initial validator set
|
|
function getInitialValidators()
|
|
external
|
|
view
|
|
returns (address[] memory, uint256[] memory);
|
|
|
|
/// Get current validator set (last enacted or initial if no changes ever made) with current stake.
|
|
function getValidators()
|
|
external
|
|
view
|
|
returns (address[] memory, uint256[] memory);
|
|
} |