From 17ede2b256bc819dc309edf38e031e246a516486 Mon Sep 17 00:00:00 2001 From: Rod Vagg Date: Wed, 19 Jun 2024 11:16:19 +1000 Subject: [PATCH] chore!: remove SubmitPoRepForBulkVerifyParams (#1552) left-over from https://github.com/filecoin-project/builtin-actors/pull/1540 --- actors/power/src/types.rs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/actors/power/src/types.rs b/actors/power/src/types.rs index 442079372..983c64dc2 100644 --- a/actors/power/src/types.rs +++ b/actors/power/src/types.rs @@ -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}; @@ -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")]