Merge pull request #92 from ava-labs/fix-param-access

Fix param attribute access
This commit is contained in:
Stephen Buttolph 2020-06-19 13:28:13 -04:00 committed by GitHub
commit 4056dc49cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)
}