feat: add sanity tests for Args Default impls (#5660)

This commit is contained in:
Dan Cline
2023-12-01 19:08:51 -05:00
committed by GitHub
parent 542639cc6f
commit 585bc31fbd
11 changed files with 194 additions and 13 deletions

View File

@ -56,7 +56,7 @@ const JWT_SIGNATURE_ALGO: Algorithm = Algorithm::HS256;
/// for the JWT, which is included in the JWT along with its payload.
///
/// See also: [Secret key - Engine API specs](https://github.com/ethereum/execution-apis/blob/main/src/engine/authentication.md#key-distribution)
#[derive(Clone)]
#[derive(Clone, PartialEq, Eq)]
pub struct JwtSecret([u8; 32]);
impl JwtSecret {