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 comments #1351

Open
wants to merge 1 commit into
base: manta
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 docker/calamari.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN apt-get install -yq openssl libssl-dev
RUN mkdir -p /usr/local/bin
RUN mkdir -p /usr/share

# Dowload latest calamari binary
# Download latest calamari binary
ADD $PARA_BINARY_URL $PARA_BINARY_PATH
RUN chmod +x $PARA_BINARY_PATH
RUN ldd $PARA_BINARY_PATH
Expand Down
2 changes: 1 addition & 1 deletion pallets/manta-pay/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ pub mod pallet {
/// Transfer Ledger Wrong Checksum Error
TransferLedgerChecksumError,

/// Transfer Ledger `VerifyingContext` cannont be decoded
/// Transfer Ledger `VerifyingContext` can not be decoded
TransferLedgerVerifyingContextDecodeError,

/// Transer Ledger Field Element Encoding Error
Expand Down
2 changes: 1 addition & 1 deletion pallets/pallet-lottery/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1737,7 +1737,7 @@ fn many_deposit_withdrawals_work() {
roll_to_round_begin(round_count * 2);
reward_collators_for_round(round_count * 2 - 1, all_collators);
// drawing happens (twice), all unstaking collators have finished unstaking
// ensure lottery doesnt run out of gas (it's not getting staking rewards in test)
// ensure lottery doesn't run out of gas (it's not getting staking rewards in test)
assert_ok!(
<Test as pallet_parachain_staking::Config>::Currency::deposit_into_existing(
&crate::Pallet::<Test>::account_id(),
Expand Down
2 changes: 1 addition & 1 deletion scripts/github/extrinsic-ordering-filter.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

FILE=$1

# Higlight indexes that were deleted
# Highlight indexes that were deleted
function find_deletions() {
echo "\n## Deletions\n"
RES=$(cat "$FILE" | grep -n '\[\-\]' | tr -s " ")
Expand Down