We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec37c65 commit dd63e7cCopy full SHA for dd63e7c
crates/common/src/commit/request.rs
@@ -8,6 +8,7 @@ use alloy::{
8
hex,
9
primitives::{aliases::B32, Address, B256},
10
rpc::types::beacon::BlsSignature,
11
+ signers::k256::U256,
12
};
13
use serde::{Deserialize, Deserializer, Serialize};
14
use tree_hash::TreeHash;
@@ -86,7 +87,7 @@ impl SignConsensusRequest {
86
87
}
88
89
pub fn builder(pubkey: BlsPublicKey) -> Self {
- Self::new(pubkey, B256::ZERO, 0)
90
+ Self::new(pubkey, B256::ZERO, u64::MAX - 1)
91
92
93
pub fn with_root<R: Into<B256>>(self, object_root: R) -> Self {
0 commit comments