Browse Source

WIP6

feature/update-txman3
Eduard S 3 years ago
parent
commit
b38fea17d6
2 changed files with 2 additions and 1 deletions
  1. +1
    -1
      coordinator/pipeline.go
  2. +1
    -0
      coordinator/txmanager.go

+ 1
- 1
coordinator/pipeline.go

@ -311,7 +311,6 @@ func (p *Pipeline) Start(batchNum common.BatchNum,
continue
}
err := p.waitServerProof(p.ctx, batchInfo)
batchInfo.ServerProof = nil
if p.ctx.Err() != nil {
continue
} else if err != nil {
@ -326,6 +325,7 @@ func (p *Pipeline) Start(batchNum common.BatchNum,
}
// We are done with this serverProof, add it back to the pool
p.proversPool.Add(p.ctx, batchInfo.ServerProof)
// batchInfo.ServerProof = nil
p.txManager.AddBatch(p.ctx, batchInfo)
}
}

+ 1
- 0
coordinator/txmanager.go

@ -140,6 +140,7 @@ func (t *TxManager) NewAuth(ctx context.Context) (*bind.TransactOpts, error) {
return nil, tracerr.Wrap(err)
}
inc := new(big.Int).Set(gasPrice)
// TODO: Replace this by a value of percentage
const gasPriceDiv = 100
inc.Div(inc, new(big.Int).SetUint64(gasPriceDiv))
gasPrice.Add(gasPrice, inc)

Loading…
Cancel
Save