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.
99Install Aptos CLI and set it up:
1010
1111``` 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
1515```
1616
1717Compile the contract and run tests:
1818
1919``` shell
20- $ aptos move compile
21- $ aptos move test
20+ aptos move compile
21+ aptos move test
2222```
2323
2424Deploy to the network configured in your aptos profile:
2525
2626``` shell
27- $ aptos move publish
27+ aptos move publish
2828```
2929
3030Invoke 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 {
6565 (top_authority, treasury, user)
6666 }
6767
68- #[test]
69- fun test_initialize () {
70- let (_top_authority, _treasury, _) = setup ();
71- // Contract is already initialized in setup
72- }
73-
7468 #[test]
7569 fun test_verify_message_succeeds () {
7670 let (top_authority, _treasury, user) = setup ();
You can’t perform that action at this time.
0 commit comments