Skip to content
Merged
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
3 changes: 2 additions & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ permissions:
jobs:
contracts:
name: Contracts
uses: multiversx/mx-sc-actions/.github/workflows/contracts.yml@v4.2.1
uses: multiversx/mx-sc-actions/.github/workflows/contracts.yml@f4db3dce60381ac2ed9504a22dcd1b796850345f
with:
rust-toolchain: stable
enable-contracts-size-report: false
enable-interactor-tests: false
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Template for creating smart contracts.

# Never Sea Festival Smart Contract

You are the Never Sea Festival 2023 organizers and you decide to create the registration via blockchain.
You are the Never Sea Festival organizers and you decide to create the registration via blockchain.
Starting from this Smart Contract template you have to add more features to coordinate the event.

* Compile and deploy the Smart Contract template ===
Expand Down
4 changes: 2 additions & 2 deletions neversea/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish = false
path = "src/neversea.rs"

[dependencies.multiversx-sc]
version = "0.52.3"
version = "0.62.1"

[dev-dependencies.multiversx-sc-scenario]
version = "0.52.3"
version = "0.62.1"
2 changes: 1 addition & 1 deletion neversea/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ authors = ["you"]
path = ".."

[dependencies.multiversx-sc-meta-lib]
version = "0.52.3"
version = "0.62.1"
2 changes: 1 addition & 1 deletion neversea/src/neversea.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pub trait Neversea {
#[endpoint]
fn register(&self) {
let caller = self.blockchain().get_caller();
let payment_amount = self.call_value().egld_value().clone_value();
let payment_amount = self.call_value().egld().clone_value();
require!(
payment_amount == self.registration_fee().get(),
"Registration fee is incorrect; please check and try again"
Expand Down
2 changes: 1 addition & 1 deletion neversea/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ panic = "abort"
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.52.3"
version = "0.62.1"

[workspace]
members = ["."]