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

[Proof] Proof submission fee param #779

Merged
merged 7 commits into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
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
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -934,6 +934,10 @@ params_update_proof_proof_requirement_threshold: ## Update the proof module proo
params_update_proof_proof_missing_penalty: ## Update the proof module proof_missing_penalty param
poktrolld tx authz exec ./tools/scripts/params/proof_proof_missing_penalty.json $(PARAM_FLAGS)

.PHONY: params_update_proof_proof_submission_fee
params_update_proof_proof_submission_fee: ## Update the proof module proof_submission_fee param
poktrolld tx authz exec ./tools/scripts/params/proof_proof_submission_fee.json $(PARAM_FLAGS)

### Shared Module Params ###
.PHONY: params_update_shared_all
params_update_shared_all: ## Update the session module params
Expand Down Expand Up @@ -963,6 +967,11 @@ params_update_shared_proof_window_open_offset_blocks: ## Update the shared modul
params_update_shared_proof_window_close_offset_blocks: ## Update the shared module proof_window_close_offset_blocks param
poktrolld tx authz exec ./tools/scripts/params/shared_proof_window_close_offset_blocks.json $(PARAM_FLAGS)

.PHONY: params_update_service_add_service_fee
params_update_service_add_service_fee: ## Update the service module add_service_fee param
poktrolld tx authz exec ./tools/scripts/params/service_add_service_fee.json $(PARAM_FLAGS)


.PHONY: params_query_all
params_query_all: check_jq ## Query the params from all available modules
@for module in $(MODULES); do \
Expand Down
9 changes: 7 additions & 2 deletions api/poktroll/application/types.pulsar.go

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

138 changes: 118 additions & 20 deletions api/poktroll/proof/params.pulsar.go

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

Loading
Loading