Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

impl clone for iter/values/keys of storage types #1224

Merged
merged 7 commits into from
Aug 5, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
fix ci errors
g4titanx committed Aug 5, 2024

Verified

This commit was signed with the committer’s verified signature.
addaleax Anna Henningsen
commit fd453cddd5483ada8d8c82312d388c9371dd38c8
2 changes: 1 addition & 1 deletion near-sdk/src/store/unordered_map/iter.rs
Original file line number Diff line number Diff line change
@@ -533,7 +533,7 @@ mod tests {
#[derive(BorshSerialize, BorshDeserialize, Ord, PartialOrd, Eq, PartialEq, Debug, Clone)]
struct Key(i32);

#[derive(BorshSerialize, BorshDeserialize, Debug, Clone)]
#[derive(BorshSerialize, BorshDeserialize, Debug, Clone, PartialEq)]
struct Value(String);

#[test]