post endpoint return selection proof

This commit is contained in:
Tan Chee Keong
2025-02-20 10:13:13 +08:00
parent 83db29a0da
commit 20ecb35351
2 changed files with 4 additions and 3 deletions

View File

@@ -3,10 +3,11 @@ use crate::{
};
use ethereum_hashing::hash;
use safe_arith::{ArithError, SafeArith};
use serde::{Deserialize, Serialize};
use ssz::Encode;
use std::cmp;
#[derive(arbitrary::Arbitrary, PartialEq, Debug, Clone)]
#[derive(arbitrary::Arbitrary, PartialEq, Debug, Clone, Serialize, Deserialize)]
pub struct SelectionProof(Signature);
impl SelectionProof {