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 22
33This package is built using the Move language and Aptos framework.
44
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.
66
77### Build, test, deploy
88
Original file line number Diff line number Diff line change @@ -7,9 +7,6 @@ module pyth_lazer::pyth_lazer_tests {
77 use aptos_framework::aptos_coin::AptosCoin ;
88 use aptos_std::ed25519;
99 use pyth_lazer::pyth_lazer;
10- use std::vector;
11- use std::debug;
12- use std::string::{String ,utf8};
1310
1411 // Test accounts
1512 const TOP_AUTHORITY : address = @0x3374049c3b46a907ff2fc6b62af51975fb9dc572b7e73eb1b255ed5edcd7cee0 ;
@@ -139,7 +136,7 @@ module pyth_lazer::pyth_lazer_tests {
139136 #[test]
140137 #[expected_failure(abort_code = pyth_lazer::EINSUFFICIENT_FEE)]
141138 fun test_insufficient_fee () {
142- let (top_authority , _treasury, user) = setup ();
139+ let (_top_authority , _treasury, user) = setup ();
143140
144141 // Drain user's balance
145142 let user_balance = coin::balance <AptosCoin >(signer ::address_of (&user));
You can’t perform that action at this time.
0 commit comments