Skip to content

Commit 2c70460

Browse files
committed
Fixed a nonce default
1 parent 4181c61 commit 2c70460

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

crates/common/src/commit/request.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ use std::{
22
collections::HashMap,
33
fmt::{self, Debug, Display},
44
str::FromStr,
5+
u64,
56
};
67

78
use alloy::{
@@ -127,7 +128,7 @@ impl<T: ProxyId> SignProxyRequest<T> {
127128
}
128129

129130
pub fn builder(proxy: T) -> Self {
130-
Self::new(proxy, B256::ZERO, 0)
131+
Self::new(proxy, B256::ZERO, u64::MAX - 1)
131132
}
132133

133134
pub fn with_root<R: Into<B256>>(self, object_root: R) -> Self {

0 commit comments

Comments
 (0)