Skip to content
Merged
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
4 changes: 2 additions & 2 deletions contracts/reflect/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ pub fn try_change_owner(
.add_attribute("owner", new_owner))
}

/// This just stores the result for future query
/// This just stores the result for future queries
#[entry_point]
pub fn reply(deps: DepsMut<SpecialQuery>, _env: Env, msg: Reply) -> Result<Response, ReflectError> {
save_reply(deps.storage, msg.id, &msg)?;
Expand Down Expand Up @@ -181,7 +181,7 @@ mod tests {
};

#[test]
fn proper_instantialization() {
fn proper_initialization() {
let mut deps = mock_dependencies_with_custom_querier(&[]);
let creator = deps.api.addr_make("creator");

Expand Down
2 changes: 1 addition & 1 deletion contracts/staking/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pub struct InvestmentInfo {
/// this is how much the owner takes as a cut when someone unbonds
pub exit_tax: Decimal,
/// All tokens are bonded to this validator
/// addr_humanize/addr_canonicalize doesn't work for validator addrresses (e.g. cosmosvaloper1...)
/// addr_humanize/addr_canonicalize doesn't work for validator addresses (e.g. cosmosvaloper1...)
pub validator: String,
/// This is the minimum amount we will pull out to reinvest, as well as a minimum
/// that can be unbonded (to avoid needless staking tx)
Expand Down
Loading