Fix param attribute access

This commit is contained in:
Aaron Buchwald 2020-06-19 13:02:28 -04:00
parent be6be7ae1c
commit 28a313becf
No known key found for this signature in database
GPG Key ID: C71A37CF7072977F
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ func (t *Transitive) Initialize(config Config) error {
t.onFinished = t.finishBootstrapping
t.polls = newPolls(int(config.Alpha), config.Context.Log, t.numPolls)
t.polls = newPolls(int(config.Params.Alpha), config.Context.Log, t.numPolls)
return t.bootstrapper.Initialize(config.BootstrapConfig)
}