Skip to content

Commit

Permalink
minor style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
garikbesson committed Jul 26, 2024
1 parent 4324830 commit c9ee461
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions collections-js/src/contract.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Find all our documentation at https://docs.near.org
import { NearBindgen, call, view, near, LookupSet, UnorderedSet, UnorderedMap, Vector, initialize, LookupMap } from "near-sdk-js";
import { NearBindgen, call, view, near, LookupSet, UnorderedSet, UnorderedMap, Vector, LookupMap } from "near-sdk-js";

@NearBindgen({})
class Storage {
Expand Down Expand Up @@ -136,7 +136,6 @@ class Storage {
return this.unordered_map.toArray().slice(from_index, limit);
}


// Nested
@call({})
insert_nested({ key, value }: { key: string, value: number }) {
Expand Down

0 comments on commit c9ee461

Please sign in to comment.