Skip to content

Commit

Permalink
fix: remove unused import of metadata (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
austinabell authored Nov 10, 2022
1 parent 0c02861 commit 61969d1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/simple-contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2018"
crate-type = ["cdylib"]

[dependencies]
near-sdk = "4.0.0-pre.7"
near-sdk = "4.1.1"

[profile.release]
codegen-units = 1
Expand Down
4 changes: 2 additions & 2 deletions workspaces/tests/test-contracts/status-message/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ edition = "2018"
crate-type = ["cdylib"]

[dependencies]
near-sdk = "4.0.0-pre.7"
near-contract-standards = "4.0.0-pre.7"
near-sdk = "4.1.1"
near-contract-standards = "4.1.1"

[profile.release]
codegen-units = 1
Expand Down
2 changes: 1 addition & 1 deletion workspaces/tests/test-contracts/status-message/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use near_sdk::borsh::{self, BorshDeserialize, BorshSerialize};
use near_sdk::{env, log, metadata, near_bindgen, AccountId};
use near_sdk::{env, log, near_bindgen, AccountId};
use std::collections::HashMap;

#[near_bindgen]
Expand Down

0 comments on commit 61969d1

Please sign in to comment.