File tree Expand file tree Collapse file tree 2 files changed +6
-12
lines changed Expand file tree Collapse file tree 2 files changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -9,22 +9,22 @@ This package is built using the Move language and Aptos framework.
9
9
Install Aptos CLI and set it up:
10
10
11
11
``` shell
12
- $ brew install aptos
13
- $ aptos --version
14
- $ aptos init --network devnet
12
+ brew install aptos
13
+ aptos --version
14
+ aptos init --network devnet
15
15
```
16
16
17
17
Compile the contract and run tests:
18
18
19
19
``` shell
20
- $ aptos move compile
21
- $ aptos move test
20
+ aptos move compile
21
+ aptos move test
22
22
```
23
23
24
24
Deploy to the network configured in your aptos profile:
25
25
26
26
``` shell
27
- $ aptos move publish
27
+ aptos move publish
28
28
```
29
29
30
30
Invoke deployed contract functions on-chain:
Original file line number Diff line number Diff line change @@ -65,12 +65,6 @@ module pyth_lazer::pyth_lazer_tests {
65
65
(top_authority, treasury, user)
66
66
}
67
67
68
- #[test]
69
- fun test_initialize () {
70
- let (_top_authority, _treasury, _) = setup ();
71
- // Contract is already initialized in setup
72
- }
73
-
74
68
#[test]
75
69
fun test_verify_message_succeeds () {
76
70
let (top_authority, _treasury, user) = setup ();
You can’t perform that action at this time.
0 commit comments