Skip to content
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 crates/malachite-app/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ impl NextHeightInfo {
/// such as whether to start the next height or restart the current height.
#[derive(Debug)]
pub enum Decision {
/// Decision was sucessfully committed, and we have the information needed to start the next height.
/// Decision was successfully committed, and we have the information needed to start the next height.
Success(Box<NextHeightInfo>),

/// Processing the decided value failed for the given height and round.
Expand Down
4 changes: 2 additions & 2 deletions tests/localdev/NativeFiatToken.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1740,7 +1740,7 @@ describe('NativeFiatToken', () => {
it('delegateCall USDC.transfer', async () => {
const { receipt, balances, helper } = await testCallType({ functionName: 'delegateCall', fn: 'transfer' })
// since the impl address is not set, the delegate call will call to zero address
// which will sucess execute with empty return
// which will successfully execute with empty return
receipt.verifyEvents((ev) => {
ev.expectCount(1).expectExecutionResult({ helper, success: true, result: '0x' })
})
Expand Down Expand Up @@ -1768,7 +1768,7 @@ describe('NativeFiatToken', () => {
it('delegateCall USDC.mint', async () => {
const { receipt, balances, helper } = await testCallType({ functionName: 'delegateCall', fn: 'mint' })
// since the impl address is not set, the delegate call will call to zero address
// which will sucess execute with empty return
// which will successfully execute with empty return
receipt.verifyEvents((ev) => {
ev.expectCount(1).expectExecutionResult({ helper, success: true, result: '0x' })
})
Expand Down