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 e106b9b commit c1d6825
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion crates/rooch-benchmarks/src/tx_exec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ pub fn tx_exec_benchmark(c: &mut Criterion) {
test_transaction_builder.update_sequence_number(seq_num);
seq_num += 1;
let publish_action = test_transaction_builder
.new_publish_examples("large_objects", Some("example".to_owned()))
.new_publish_examples("large_objects", Some("rooch_examples".to_owned()))
.unwrap();
let tx = test_transaction_builder
.build_and_sign(publish_action)
Expand Down
4 changes: 2 additions & 2 deletions examples/large_objects/Move.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ MoveosStdlib = { git = "https://github.com/rooch-network/rooch.git", subdir = "f
RoochFramework = { git = "https://github.com/rooch-network/rooch.git", subdir = "frameworks/rooch-framework", rev = "main" }

[addresses]
example = "_"
rooch_examples = "_"
moveos_std = "0x2"
rooch_framework = "0x3"

[dev-addresses]
example = "0x42"
rooch_examples = "0x42"
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 large_objects::big_vector {
module rooch_examples::big_vector {
use moveos_std::object;

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

entry fun transfer(to: address) {
Expand Down

0 comments on commit c1d6825

Please sign in to comment.