Skip to content

Commit 62d6905

Browse files
committed
fix: update readme, remove test_initialize
1 parent 69f2946 commit 62d6905

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

lazer/contracts/aptos/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@ This package is built using the Move language and Aptos framework.
99
Install 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

1717
Compile 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

2424
Deploy to the network configured in your aptos profile:
2525

2626
```shell
27-
$ aptos move publish
27+
aptos move publish
2828
```
2929

3030
Invoke deployed contract functions on-chain:

lazer/contracts/aptos/tests/pyth_lazer_tests.move

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)