Skip to content

Commit

Permalink
feat(ton): Fix clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
satoshiotomakan committed Aug 2, 2024
1 parent 58e4c92 commit 599caf7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions rust/tw_keypair/src/ffi/crypto_box/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
//
// Copyright © 2017 Trust Wallet.

#![allow(clippy::missing_safety_doc)]

use crate::ffi::crypto_box::public_key::TWCryptoBoxPublicKey;
use crate::ffi::crypto_box::secret_key::TWCryptoBoxSecretKey;
use crate::nacl_crypto_box::CryptoBox;
Expand Down
2 changes: 2 additions & 0 deletions rust/tw_keypair/src/ffi/crypto_box/secret_key.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
//
// Copyright © 2017 Trust Wallet.

#![allow(clippy::missing_safety_doc)]

use crate::ffi::crypto_box::public_key::TWCryptoBoxPublicKey;
use crate::nacl_crypto_box::secret_key::SecretKey;
use tw_memory::ffi::RawPtrTrait;
Expand Down

0 comments on commit 599caf7

Please sign in to comment.