Skip to content

Commit

Permalink
Revert "multisig: add expires_at attribute to Multisig type"
Browse files Browse the repository at this point in the history
This reverts commit 2d5740c.
  • Loading branch information
k4m4 committed Apr 18, 2024
1 parent b4da970 commit 0341515
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion contracts/multisig-prover/src/test/mocks/multisig.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ mod query {
state: MultisigState::Completed {
completed_at: 12345,
},
expires_at: 23456,
quorum,
signers,
}
Expand Down
1 change: 0 additions & 1 deletion contracts/multisig/src/contract/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ pub fn get_multisig(deps: Deps, session_id: Uint64) -> StdResult<Multisig> {

Ok(Multisig {
state: session.state,
expires_at: session.expires_at,
quorum: worker_set.threshold,
signers: signers_with_sigs,
})
Expand Down
1 change: 0 additions & 1 deletion contracts/multisig/src/msg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ pub struct Signer {
#[cw_serde]
pub struct Multisig {
pub state: MultisigState,
pub expires_at: u64,
pub quorum: Uint256,
pub signers: Vec<(Signer, Option<Signature>)>,
}

0 comments on commit 0341515

Please sign in to comment.