fix(tx): Add missing OpDe for claimopreward (#3347)

This commit is contained in:
Daniel Sanchez
2026-08-18 14:22:47 +00:00
committed by GitHub
parent b73a6a48da
commit e595abf72c
+2
View File
@@ -63,6 +63,7 @@ pub enum OpDe {
SDPActive(OpWire<SDP_ACTIVE, SDPActiveOp>),
LeaderClaim(OpWire<LEADER_CLAIM, LeaderClaimOp>),
Transfer(OpWire<TRANSFER, TransferOp>),
ClaimPoWReward(OpWire<CLAIM_POW_REWARD, ClaimPowRewardOp>),
}
impl From<OpDe> for Op {
@@ -78,6 +79,7 @@ impl From<OpDe> for Op {
OpDe::SDPActive(w) => Self::SDPActive(w.into_op()),
OpDe::LeaderClaim(w) => Self::LeaderClaim(w.into_op()),
OpDe::Transfer(w) => Self::Transfer(w.into_op()),
OpDe::ClaimPoWReward(w) => Self::ClaimPowReward(w.into_op()),
}
}
}