diff --git a/core/src/mantle/ops/internal.rs b/core/src/mantle/ops/internal.rs index 3d3dcc42b..f8326b6c1 100644 --- a/core/src/mantle/ops/internal.rs +++ b/core/src/mantle/ops/internal.rs @@ -63,6 +63,7 @@ pub enum OpDe { SDPActive(OpWire), LeaderClaim(OpWire), Transfer(OpWire), + ClaimPoWReward(OpWire), } impl From for Op { @@ -78,6 +79,7 @@ impl From 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()), } } }