mirror of
https://github.com/logos-co/nomos-node.git
synced 2026-08-27 09:31:10 +00:00
fix(tx): Add missing OpDe for claimopreward (#3347)
This commit is contained in:
@@ -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()),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user