Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumExplorer committed Sep 7, 2024
1 parent d603bca commit b626601
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions packages/rs-sdk/src/platform/fetch_many.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ use dapi_grpc::platform::v0::{
};
use dashcore_rpc::dashcore::ProTxHash;
use dpp::data_contract::DataContract;
use dpp::fee::Credits;
use dpp::identity::KeyID;
use dpp::prelude::{Identifier, IdentityPublicKey};
use dpp::util::deserializer::ProtocolVersion;
Expand Down Expand Up @@ -283,12 +282,12 @@ impl FetchMany<EpochIndex, ExtendedEpochInfos> for ExtendedEpochInfo {
/// ## Example
///
/// ```rust
/// use dash_sdk::{Sdk, platform::FetchMany};
/// use drive_proof_verifier::types::ProtocolVersionVoteCount;
/// use dash_sdk::{Sdk, platform::FetchMany, Error};
/// use drive_proof_verifier::types::{ProtocolVersionUpgrades, ProtocolVersionVoteCount};
///
/// # tokio_test::block_on(async {
/// let sdk = Sdk::new_mock();
/// let result = ProtocolVersionVoteCount::fetch_many(&sdk, ()).await;
/// let result: Result<ProtocolVersionUpgrades, Error> = ProtocolVersionVoteCount::fetch_many(&sdk, ()).await;
/// # });
/// ```
impl FetchMany<ProtocolVersion, ProtocolVersionUpgrades> for ProtocolVersionVoteCount {
Expand Down

0 comments on commit b626601

Please sign in to comment.