Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pause125 committed Dec 4, 2024
1 parent 1f33d2d commit e106b9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/large_objects/sources/big_vector.move
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module example::big_vector {
module large_objects::big_vector {
use moveos_std::object;

struct VecU8 has key, store {
Expand All @@ -13,7 +13,7 @@ module example::big_vector {
b = b-1
};
let obj = object::new_named_object( VecU8 { values });
object::transfer(obj, @example);
object::transfer(obj, @large_objects);
}

entry fun transfer(to: address) {
Expand Down

0 comments on commit e106b9b

Please sign in to comment.