-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package ftmclient | ||
|
||
import ( | ||
"context" | ||
"math/big" | ||
|
||
"github.com/ethereum/go-ethereum" | ||
"github.com/ethereum/go-ethereum/common/hexutil" | ||
|
||
"github.com/Fantom-foundation/go-opera/inter" | ||
) | ||
|
||
// GetValidators returns Lachesis event by hash or short ID. | ||
func (ec *Client) GetValidators(ctx context.Context, epoch *big.Int) (inter.ValidatorProfiles, error) { | ||
var raw map[hexutil.Uint64]interface{} | ||
err := ec.c.CallContext(ctx, &raw, "abft_getValidators", toBlockNumArg(epoch)) | ||
if err != nil { | ||
return nil, err | ||
} else if len(raw) == 0 { | ||
return nil, ethereum.NotFound | ||
} | ||
|
||
return inter.RPCUnmarshalValidators(raw) | ||
} |