mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
18 lines
746 B
Markdown
18 lines
746 B
Markdown
|
|
# `shutdown`
|
|
|
|
## Table of Contents
|
|
|
|
## Overview
|
|
|
|
The `x/shutdown` module allows certain message types to be disabled based on governance votes.
|
|
|
|
Msgs and routes are disabled via an antehandler decorator. The decorator checks incoming all txs and rejects them if they contain a disallowed msg type.
|
|
Disallowed msg types are stored in a circuit breaker keeper.
|
|
|
|
The list of disallowed msg types is updated via a custom governance proposal and handler.
|
|
|
|
Design Alternatives:
|
|
|
|
- store list of disallowed msg types in params, then don't need custom gov proposal
|
|
- replace the app Router with a custom one to avoid using the antehandler - can't be done with current baseapp, but v0.38.x enables this. (https://github.com/cosmos/cosmos-sdk/issues/5455) |