fix: use correct abci method in pricefeed spec

This commit is contained in:
Kevin Davis 2020-05-07 13:44:43 -04:00
parent 178f74c1d8
commit 70b0f02e6d
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# Begin Block
# End Block
At the start of each block, the current price is calculated as the median of all raw prices for each market. The logic is as follows:
At the end of each block, the current price is calculated as the median of all raw prices for each market. The logic is as follows:
```go
// EndBlocker updates the current pricefeed

View File

@ -6,8 +6,8 @@
3. **[Messages](03_messages.md)**
4. **[Events](04_events.md)**
5. **[Params](05_params.md)**
6. **[BeginBlock](06_begin_block.md)**
6. **[EndBlock](06_end_block.md)**
## Abstract
`x/pricefeed` is an implementation of a Cosmos SDK Module that handles the posting of prices for various markets by a group of whitelisted oracles. At the beginning of each block, the median price of all oracle posted prices is determined for each market and stored.
`x/pricefeed` is an implementation of a Cosmos SDK Module that handles the posting of prices for various markets by a group of whitelisted oracles. At the end of each block, the median price of all oracle posted prices is determined for each market and stored.