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

Fix typos #18

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion contracts/price-feed/src/ibc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ pub fn ibc_packet_ack(
_env: Env,
_msg: IbcPacketAckMsg,
) -> StdResult<IbcBasicResponse> {
// We ignore acknowledgement from BandChain becuase it doesn't neccessary to know request id when handle result.
// We ignore acknowledgement from BandChain because it doesn't necessary to know request id when handle result.
Ok(IbcBasicResponse::new().add_attribute("action", "ibc_packet_ack"))
}

Expand Down
2 changes: 1 addition & 1 deletion contracts/price-feed/src/msg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pub struct InstantiateMsg {
pub execute_gas: Uint64,
// Minimum number of sources required to return a successful response
pub minimum_sources: u8,
// The minimum amount that sender need to send to create a new oracle request
// The minimum amount that sender needs to send to create a new oracle request
pub fee: Vec<Coin>,
}

Expand Down
2 changes: 1 addition & 1 deletion docs/contracts_price_feed.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ You can request 4 symbols on [oracle script id: 360](https://laozi-testnet6.cosm
## Config example

```
client_id: String -> Arbitary string for your request
client_id: String -> Arbitrary string for your request
oracle_script_id: Uint64, -> Please use oracle script id 360
ask_count: Uint64, -> The number of validator you want to ask (Recommend: 4 on testnet)
min_count: Uint64, -> The minimum number of validator need to answer to aggregate result (Recommend: 3 on testnet)
Expand Down