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

chore: fix some typos in comment #57

Open
wants to merge 1 commit 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
4 changes: 2 additions & 2 deletions packages/osmosis-test-tube/src/runner/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ impl OsmosisTestApp {
pub fn init_account(&self, coins: &[Coin]) -> RunnerResult<SigningAccount> {
self.inner.init_account(coins)
}
/// Convinience function to create multiple accounts with the same
/// Convenience function to create multiple accounts with the same
/// Initial coins balance
pub fn init_accounts(&self, coins: &[Coin], count: u64) -> RunnerResult<Vec<SigningAccount>> {
self.inner.init_accounts(coins, count)
Expand Down Expand Up @@ -350,7 +350,7 @@ mod tests {
]
);

// execute on more time to excercise account sequence
// execute on more time to exercise account sequence
let msg = MsgCreateDenom {
sender: acc.address(),
subdenom: "newerdenom".to_string(),
Expand Down
2 changes: 1 addition & 1 deletion packages/test-tube/src/conversions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ impl From<&CString> for GoString {

/// This is needed to be implemented as macro since
/// conversion from &CString to GoString requires
/// CString to not get dropped before referecing its pointer
/// CString to not get dropped before referencing its pointer
#[macro_export]
macro_rules! redefine_as_go_string {
($($ident:ident),*) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/test-tube/src/runner/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ impl BaseApp {
},
))
}
/// Convinience function to create multiple accounts with the same
/// Convenience function to create multiple accounts with the same
/// Initial coins balance
pub fn init_accounts(&self, coins: &[Coin], count: u64) -> RunnerResult<Vec<SigningAccount>> {
(0..count).map(|_| self.init_account(coins)).collect()
Expand Down
2 changes: 1 addition & 1 deletion scripts/check-updates.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ MATRIX=$(
jq -RMrnc '{ "target": [inputs | select( test("^origin/main$") or ((capture("v(?<v>[0-9]+)") | .v | tonumber) >= 14))] }'
)

# update latest tag timestmap
# update latest tag timestamp
rm -f "$LATEST_OSMOSIS_TAG_TIMESTAMP_PATH"
LATEST_OSMOSIS_TAG_TIMESTAMP="$(git tag --format="$FORMAT" | awk '{ print $2 }' | sort -nr | head -n 1)"

Expand Down