forked from cerc-io/laconicd
Fix lint errors
This commit is contained in:
parent
864d60200f
commit
5bd048bde1
@ -226,12 +226,18 @@ func (app *LaconicApp) prepForZeroHeightGenesis(ctx sdk.Context, jailAllowedAddr
|
|||||||
/* Handle slashing state. */
|
/* Handle slashing state. */
|
||||||
|
|
||||||
// reset start height on signing infos
|
// reset start height on signing infos
|
||||||
app.SlashingKeeper.IterateValidatorSigningInfos(
|
err = app.SlashingKeeper.IterateValidatorSigningInfos(
|
||||||
ctx,
|
ctx,
|
||||||
func(addr sdk.ConsAddress, info slashingtypes.ValidatorSigningInfo) (stop bool) {
|
func(addr sdk.ConsAddress, info slashingtypes.ValidatorSigningInfo) (stop bool) {
|
||||||
info.StartHeight = 0
|
info.StartHeight = 0
|
||||||
app.SlashingKeeper.SetValidatorSigningInfo(ctx, addr, info)
|
err = app.SlashingKeeper.SetValidatorSigningInfo(ctx, addr, info)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
return false
|
return false
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -413,7 +413,12 @@ func (q queryResolver) GetParticipantByAddress(ctx context.Context, address stri
|
|||||||
|
|
||||||
func (q queryResolver) GetParticipantByNitroAddress(ctx context.Context, nitroAddress string) (*Participant, error) {
|
func (q queryResolver) GetParticipantByNitroAddress(ctx context.Context, nitroAddress string) (*Participant, error) {
|
||||||
onboardingQueryClient := onboardingTypes.NewQueryClient(q.ctx)
|
onboardingQueryClient := onboardingTypes.NewQueryClient(q.ctx)
|
||||||
participantResp, err := onboardingQueryClient.GetParticipantByNitroAddress(ctx, &onboardingTypes.QueryGetParticipantByNitroAddressRequest{NitroAddress: nitroAddress})
|
participantResp, err := onboardingQueryClient.GetParticipantByNitroAddress(
|
||||||
|
ctx,
|
||||||
|
&onboardingTypes.QueryGetParticipantByNitroAddressRequest{
|
||||||
|
NitroAddress: nitroAddress,
|
||||||
|
},
|
||||||
|
)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user