Merge pull request #38 from renegade-fi/joey/fix-price-reporter-docker #166
clippy
5 errors
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 5 |
Warning | 0 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.78.0-nightly (3cbb93223 2024-03-13)
- cargo 1.78.0-nightly (7065f0ef4 2024-03-12)
- clippy 0.1.78 (3cbb932 2024-03-13)
Annotations
Check failure on line 136 in funds-manager/funds-manager-server/src/fee_indexer/fee_balances.rs
github-actions / clippy
struct `external_api::http::wallet::WithdrawBalanceRequest` has no field named `wallet_commitment_sig`
error[E0560]: struct `external_api::http::wallet::WithdrawBalanceRequest` has no field named `wallet_commitment_sig`
--> funds-manager/funds-manager-server/src/fee_indexer/fee_balances.rs:136:13
|
136 | wallet_commitment_sig: commitment_sig.to_vec(),
| ^^^^^^^^^^^^^^^^^^^^^ `external_api::http::wallet::WithdrawBalanceRequest` does not have this field
|
= note: available fields are: `update_auth`
Check failure on line 137 in funds-manager/funds-manager-server/src/relayer_client.rs
github-actions / clippy
struct `external_api::http::wallet::FindWalletRequest` has no field named `key_chain`
error[E0560]: struct `external_api::http::wallet::FindWalletRequest` has no field named `key_chain`
--> funds-manager/funds-manager-server/src/relayer_client.rs:137:13
|
137 | key_chain: keychain.into(),
| ^^^^^^^^^ `external_api::http::wallet::FindWalletRequest` does not have this field
|
= note: available fields are: `private_keychain`
Check failure on line 134 in funds-manager/funds-manager-server/src/fee_indexer/index_fees.rs
github-actions / clippy
the trait bound `arbitrum_client::abi::settleOfflineFeeCall: alloy_sol_types::SolCall` is not satisfied
error[E0277]: the trait bound `arbitrum_client::abi::settleOfflineFeeCall: alloy_sol_types::SolCall` is not satisfied
--> funds-manager/funds-manager-server/src/fee_indexer/index_fees.rs:134:13
|
134 | <settleOfflineFeeCall as SolCall>::SELECTOR => {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `alloy_sol_types::SolCall` is not implemented for `arbitrum_client::abi::settleOfflineFeeCall`
Check failure on line 95 in funds-manager/funds-manager-server/src/custody_client/gas_wallets.rs
github-actions / clippy
no method named `refill_gas_for_active_wallets` found for reference `&custody_client::CustodyClient` in the current scope
error[E0599]: no method named `refill_gas_for_active_wallets` found for reference `&custody_client::CustodyClient` in the current scope
--> funds-manager/funds-manager-server/src/custody_client/gas_wallets.rs:95:14
|
95 | self.refill_gas_for_active_wallets(DEFAULT_TOP_UP_AMOUNT).await?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: there is a method `refill_gas_for_wallets` with a similar name
|
95 | self.refill_gas_for_wallets(DEFAULT_TOP_UP_AMOUNT).await?;
| ~~~~~~~~~~~~~~~~~~~~~~
Check failure on line 41 in funds-manager/funds-manager-server/src/custody_client/gas_wallets.rs
github-actions / clippy
cannot find value `active_wallets` in this scope
error[E0425]: cannot find value `active_wallets` in this scope
--> funds-manager/funds-manager-server/src/custody_client/gas_wallets.rs:41:23
|
41 | for wallet in active_wallets {
| ^^^^^^^^^^^^^^ not found in this scope