Skip to content

Commit 7e4b04a

Browse files
committed
Fix error in parameter conversion
1 parent a57eaf8 commit 7e4b04a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/converter_utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1016,7 +1016,7 @@ func (si *ServerImplementation) blockParamsToBlockFilter(params generated.Search
10161016
}
10171017

10181018
// Participation = proposers || absent || expired
1019-
if params.Absent != nil {
1019+
if params.Participation != nil {
10201020
for _, s := range *params.Participation {
10211021
addr, err := sdk.DecodeAddress(s)
10221022
if err != nil {

0 commit comments

Comments
 (0)