docs: move subscription to tendermint-core (#5323)

## Description

- Move subscriptions to tendermint-core section. 

- Remove unused photot

Closes: #XXX
This commit is contained in:
Marko
2020-09-02 16:53:29 +02:00
committed by GitHub
parent 710a97d850
commit c2ce5e6f35
10 changed files with 11 additions and 12 deletions

View File

@@ -4,8 +4,7 @@ order: 6
# Indexing Transactions
Tendermint allows you to index transactions and later query or subscribe
to their results.
Tendermint allows you to index transactions and later query or subscribe to their results.
Events can be used to index transactions and blocks according to what happened
during their execution. Note that the set of events returned for a block from
@@ -78,9 +77,8 @@ func (app *KVStoreApplication) DeliverTx(req types.RequestDeliverTx) types.Resul
}
```
The transaction will be indexed (if the indexer is not `null`) with a certain
attribute if the attribute's `Index` field is set to `true`. In the above
example, all attributes will be indexed.
The transaction will be indexed (if the indexer is not `null`) with a certain attribute if the attribute's `Index` field is set to `true`.
In the above example, all attributes will be indexed.
## Querying Transactions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -14,6 +14,7 @@ This section dives into the internals of Tendermint the implementation.
- [Running in Production](./running-in-production.md)
- [Metrics](./metrics.md)
- [Validators](./validators.md)
- [Subscribing to events](./subscription.md)
- [Block Structure](./block-structure.md)
- [RPC](./rpc.md)
- [Fast Sync](./fast-sync.md)

View File

@@ -1,5 +1,5 @@
---
order: 7
order: 8
---
# Block Structure

View File

@@ -1,5 +1,5 @@
---
order: 9
order: 10
---
# Fast Sync

View File

@@ -1,5 +1,5 @@
---
order: 12
order: 13
---
# Light Client

View File

@@ -1,5 +1,5 @@
---
order: 11
order: 12
---
# Mempool

View File

@@ -1,5 +1,5 @@
---
order: 8
order: 9
---
# RPC

View File

@@ -1,5 +1,5 @@
---
order: 10
order: 11
---
# State Sync

View File

@@ -1,5 +1,5 @@
---
order: 5
order: 7
---
# Subscribing to events via Websocket