forked from TrueCloudLab/frostfs-node
[#181] ir: Do not deposit notary GAS by non-alphabet nodes
Signed-off-by: Pavel Karpy <p.karpy@yadro.com>
This commit is contained in:
parent
ed28ce24cd
commit
44d5412e10
1 changed files with 9 additions and 7 deletions
|
@ -149,14 +149,16 @@ func (s *Server) Start(ctx context.Context, intError chan<- error) (err error) {
|
|||
return err
|
||||
}
|
||||
|
||||
err = s.initMainNotary(ctx)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if s.IsAlphabet() {
|
||||
err = s.initMainNotary(ctx)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
err = s.initSideNotary(ctx)
|
||||
if err != nil {
|
||||
return err
|
||||
err = s.initSideNotary(ctx)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
prm := governance.VoteValidatorPrm{}
|
||||
|
|
Loading…
Reference in a new issue