Skip to content

Commit b02ecc9

Browse files
committed
- Bump the version
- update rust doc for CallEvm
1 parent a3db4c9 commit b02ecc9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/sei-cosmwasm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sei-cosmwasm"
3-
version = "0.4.14"
3+
version = "0.4.15"
44
edition = "2021"
55
description = "Bindings and helpers for cosmwasm contracts to interact with sei blockchain"
66
license = "Apache-2.0"

packages/sei-cosmwasm/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Add the sei-cosmwasm dependency to your smart contract's `Cargo.toml` file:
88

99
```toml
1010
[dependencies]
11-
sei-cosmwasm = { version = "0.4.14" }
11+
sei-cosmwasm = { version = "0.4.15" }
1212
```
1313

1414
## Functionality

packages/sei-cosmwasm/src/msg.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ pub enum SeiMsg {
5858
/// The EVM (Solidity) contract `msg.sender` in this case will be the 32-byte long
5959
/// [`cosmwasm_std::CanonicalAddr`] of this contract.
6060
CallEvm {
61-
/// The amount to send along with the transaction
61+
/// The amount to send along with the transaction. 0 if non-payable function is called.
6262
value: Uint128,
6363
/// The address of the EVM contract to call
6464
to: String,

0 commit comments

Comments
 (0)