Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

fix(prover): fix nil of MinSgxAndZkVMTierFee in Prover Server #780

Merged
merged 2 commits into from
Apr 30, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions prover/prover.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ func InitFromConfig(ctx context.Context, p *Prover, cfg *Config) (err error) {
ProverPrivateKey: p.cfg.L1ProverPrivKey,
MinOptimisticTierFee: p.cfg.MinOptimisticTierFee,
MinSgxTierFee: p.cfg.MinSgxTierFee,
MinSgxAndZkVMTierFee: p.cfg.MinSgxAndZkVMTierFee,
MinEthBalance: p.cfg.MinEthBalance,
MinTaikoTokenBalance: p.cfg.MinTaikoTokenBalance,
MaxExpiry: p.cfg.MaxExpiry,
Expand Down
Loading