Skip to content

Commit 66913c3

Browse files
committed
Fixed a nonce default
1 parent 4181c61 commit 66913c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/common/src/commit/request.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ impl<T: ProxyId> SignProxyRequest<T> {
127127
}
128128

129129
pub fn builder(proxy: T) -> Self {
130-
Self::new(proxy, B256::ZERO, 0)
130+
Self::new(proxy, B256::ZERO, u64::MAX - 1)
131131
}
132132

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

0 commit comments

Comments
 (0)