Browse Source

remove setOption (#181)

pull/7804/head
Marko 4 years ago
committed by GitHub
parent
commit
04fb20e33d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 20 deletions
  1. +3
    -20
      spec/abci/abci.md

+ 3
- 20
spec/abci/abci.md View File

@ -9,7 +9,7 @@ ABCI methods are split across four separate ABCI _connections_:
- Consensus connection: `InitChain`, `BeginBlock`, `DeliverTx`, `EndBlock`, `Commit` - Consensus connection: `InitChain`, `BeginBlock`, `DeliverTx`, `EndBlock`, `Commit`
- Mempool connection: `CheckTx` - Mempool connection: `CheckTx`
- Info connection: `Info`, `SetOption`, `Query`
- Info connection: `Info`, `Query`
- Snapshot connection: `ListSnapshots`, `LoadSnapshotChunk`, `OfferSnapshot`, `ApplySnapshotChunk` - Snapshot connection: `ListSnapshots`, `LoadSnapshotChunk`, `OfferSnapshot`, `ApplySnapshotChunk`
The consensus connection is driven by a consensus protocol and is responsible The consensus connection is driven by a consensus protocol and is responsible
@ -35,7 +35,7 @@ don't return errors because an error would indicate a critical failure
in the application and there's nothing Tendermint can do. The problem in the application and there's nothing Tendermint can do. The problem
should be addressed and both Tendermint and the application restarted. should be addressed and both Tendermint and the application restarted.
All other methods (`SetOption, Query, CheckTx, DeliverTx`) return an
All other methods (`Query, CheckTx, DeliverTx`) return an
application-specific response `Code uint32`, where only `0` is reserved application-specific response `Code uint32`, where only `0` is reserved
for `OK`. for `OK`.
@ -158,7 +158,7 @@ Sources of non-determinism in applications may include:
See [#56](https://github.com/tendermint/abci/issues/56) for original discussion. See [#56](https://github.com/tendermint/abci/issues/56) for original discussion.
Note that some methods (`SetOption, Query, CheckTx, DeliverTx`) return
Note that some methods (`Query, CheckTx, DeliverTx`) return
explicitly non-deterministic data in the form of `Info` and `Log` fields. The `Log` is explicitly non-deterministic data in the form of `Info` and `Log` fields. The `Log` is
intended for the literal output from the application's logger, while the intended for the literal output from the application's logger, while the
`Info` is any additional info that should be returned. These are the only fields `Info` is any additional info that should be returned. These are the only fields
@ -236,23 +236,6 @@ via light client.
be updated during `Commit`, ensuring that `Commit` is never be updated during `Commit`, ensuring that `Commit` is never
called twice for the same block height. called twice for the same block height.
### SetOption
- **Request**:
- `Key (string)`: Key to set
- `Value (string)`: Value to set for key
- **Response**:
- `Code (uint32)`: Response code
- `Log (string)`: The output of the application's logger. May
be non-deterministic.
- `Info (string)`: Additional information. May
be non-deterministic.
- **Usage**:
- Set non-consensus critical application specific options.
- e.g. Key="min-fee", Value="100fermion" could set the minimum fee
required for CheckTx (but not DeliverTx - that would be
consensus critical).
### InitChain ### InitChain
- **Request**: - **Request**:


Loading…
Cancel
Save