Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement CheckRefreshRequired #12

Merged
merged 3 commits into from
Jan 14, 2025
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
Next Next commit
Implement CheckRefreshRequired
  • Loading branch information
junichi-tanaka committed Jan 12, 2025
commit 73cb2dc1557afb7b44268e4b9bd5d475b729bc2d
6 changes: 5 additions & 1 deletion e2e/relayer/configs/templates/ibc0.json.tpl
Original file line number Diff line number Diff line change
@@ -34,6 +34,10 @@
"@type": "/relayer.provers.qbft.config.ProverConfig",
"consensus_type": "$CONSENSUS_TYPE",
"trusting_period": "336h",
"max_clock_drift": "30s"
"max_clock_drift": "30s",
"refresh_threshold_rate": {
"numerator": 2,
"denominator": 3
}
}
}
6 changes: 5 additions & 1 deletion e2e/relayer/configs/templates/ibc1.json.tpl
Original file line number Diff line number Diff line change
@@ -31,6 +31,10 @@
"@type": "/relayer.provers.qbft.config.ProverConfig",
"consensus_type": "$CONSENSUS_TYPE",
"trusting_period": "336h",
"max_clock_drift": "30s"
"max_clock_drift": "30s",
"refresh_threshold_rate": {
"numerator": 2,
"denominator": 3
}
}
}
276 changes: 255 additions & 21 deletions module/config.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading