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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ extern "C" fn interface_version_8() -> () {}
extern "C" fn allocate(size: usize) -> u32;
extern "C" fn deallocate(pointer: u32);

// creates an initial state of a contract with a configuration send in the argument msg_ptr
// creates an initial state of a contract with a configuration sent in the argument msg_ptr
extern "C" fn instantiate(env_ptr: u32, info_ptr: u32, msg_ptr: u32) -> u32;
```

Expand Down
2 changes: 1 addition & 1 deletion docs/CAPABILITIES.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ and

## Format

The capability name needs to be allowed as a Wasm export names and be a legal
The capability name needs to be allowed as a Wasm export name and be a legal
function name in Rust and other CosmWasm smart contract languages such as Go. By
convention, the name should be short and all lower ASCII alphanumerical plus
underscores.
Expand Down
2 changes: 1 addition & 1 deletion docs/ERROR_HANDLING.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ from the contract, they have to be deterministic. With the new separation, wasmd
now passes the full contract error message back into the calling contract,
massively improving the debugging experience.

## Handing ibc_packet_receive errors
## Handling ibc_packet_receive errors

From wasmd 0.22 to 0.31 (inclusive), contract errors and VM errors were handled
the same. They got the special treatment of reverting state changes, writing an
Expand Down