Skip to content

Commit 3078260

Browse files
committed
lints
1 parent 7c2283c commit 3078260

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

lazer/contracts/aptos/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This 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

lazer/contracts/aptos/tests/pyth_lazer_tests.move

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff 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));

0 commit comments

Comments
 (0)