Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore!: remove SubmitPoRepForBulkVerifyParams #1552

Merged
merged 1 commit into from
Jun 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions actors/power/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use fvm_shared::address::Address;
use fvm_shared::bigint::bigint_ser;
use fvm_shared::clock::ChainEpoch;
use fvm_shared::econ::TokenAmount;
use fvm_shared::sector::{RegisteredPoStProof, SealVerifyInfo, StoragePower};
use fvm_shared::sector::{RegisteredPoStProof, StoragePower};
use fvm_shared::ActorID;

use serde::{Deserialize, Serialize};
Expand Down Expand Up @@ -60,12 +60,6 @@ pub struct UpdatePledgeTotalParams {
pub pledge_delta: TokenAmount,
}

#[derive(Debug, Serialize, Deserialize, PartialEq, Eq, Clone)]
#[serde(transparent)]
pub struct SubmitPoRepForBulkVerifyParams {
pub seal_info: SealVerifyInfo,
}

#[derive(Serialize_tuple, Deserialize_tuple, Debug, Clone, Eq, PartialEq)]
pub struct CurrentTotalPowerReturn {
#[serde(with = "bigint_ser")]
Expand Down
Loading