diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-09-05 10:32:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-05 10:32:25 +0800 |
commit | 41641e10286dd7b1fdcced6a51157e061d545ef5 (patch) | |
tree | 69129be3df35d7abde7b94ef5ceec828787b3498 /cmd/dexcon-simulation-with-scheduler | |
parent | 04a63a22a24abaaa91b1d981e6d95260d80dadf4 (diff) | |
download | tangerine-consensus-41641e10286dd7b1fdcced6a51157e061d545ef5.tar.gz tangerine-consensus-41641e10286dd7b1fdcced6a51157e061d545ef5.tar.zst tangerine-consensus-41641e10286dd7b1fdcced6a51157e061d545ef5.zip |
misc: Polish BA. (#94)
Diffstat (limited to 'cmd/dexcon-simulation-with-scheduler')
-rw-r--r-- | cmd/dexcon-simulation-with-scheduler/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/dexcon-simulation-with-scheduler/main.go b/cmd/dexcon-simulation-with-scheduler/main.go index b9f5ec3..d1d815a 100644 --- a/cmd/dexcon-simulation-with-scheduler/main.go +++ b/cmd/dexcon-simulation-with-scheduler/main.go @@ -49,8 +49,8 @@ func main() { Mean: cfg.Networking.Mean, } proposingLatency := &integration.NormalLatencyModel{ - Sigma: cfg.Validator.ProposeIntervalSigma, - Mean: cfg.Validator.ProposeIntervalMean, + Sigma: cfg.Validator.Legacy.ProposeIntervalSigma, + Mean: cfg.Validator.Legacy.ProposeIntervalMean, } // Setup validators and other consensus related stuffs. apps, dbs, validators, err := integration.PrepareValidators( |