File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
This package is built using the Move language and Aptos framework.
4
4
5
- ` PythLazer ` is an Aptos on-chain contract that allows consumers to easily verify Pyth Lazer updates for use on-chain.
5
+ ` PythLazer ` is an Aptos contract that allows consumers to easily verify Pyth Lazer updates for use on-chain.
6
6
7
7
### Build, test, deploy
8
8
Original file line number Diff line number Diff line change @@ -7,9 +7,6 @@ module pyth_lazer::pyth_lazer_tests {
7
7
use aptos_framework::aptos_coin::AptosCoin ;
8
8
use aptos_std::ed25519;
9
9
use pyth_lazer::pyth_lazer;
10
- use std::vector;
11
- use std::debug;
12
- use std::string::{String ,utf8};
13
10
14
11
// Test accounts
15
12
const TOP_AUTHORITY : address = @0x3374049c3b46a907ff2fc6b62af51975fb9dc572b7e73eb1b255ed5edcd7cee0 ;
@@ -139,7 +136,7 @@ module pyth_lazer::pyth_lazer_tests {
139
136
#[test]
140
137
#[expected_failure(abort_code = pyth_lazer::EINSUFFICIENT_FEE)]
141
138
fun test_insufficient_fee () {
142
- let (top_authority , _treasury, user) = setup ();
139
+ let (_top_authority , _treasury, user) = setup ();
143
140
144
141
// Drain user's balance
145
142
let user_balance = coin::balance <AptosCoin >(signer ::address_of (&user));
You can’t perform that action at this time.
0 commit comments