Skip to content
Closed
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 frame/evm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pallet-evm"
version = "3.0.0"
version = "3.0.1-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions frame/evm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ decl_module! {

/// Issue an EVM call operation. This is similar to a message call transaction in Ethereum.
#[weight = T::GasWeightMapping::gas_to_weight(*gas_limit)]
fn call(
pub fn call(
Comment thread
peektism marked this conversation as resolved.
origin,
source: H160,
target: H160,
Expand Down Expand Up @@ -418,7 +418,7 @@ decl_module! {
/// Issue an EVM create operation. This is similar to a contract creation transaction in
/// Ethereum.
#[weight = T::GasWeightMapping::gas_to_weight(*gas_limit)]
fn create(
pub fn create(
origin,
source: H160,
init: Vec<u8>,
Expand Down