Skip to content

Commit

Permalink
;
Browse files Browse the repository at this point in the history
  • Loading branch information
erikreppel committed Apr 25, 2024
1 parent 9c896aa commit aa9a199
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ fn make_keypair(config: &Config) -> eyre::Result<Keypair> {
} else if secret_bytes.len() > 32 {
bytes.copy_from_slice(&secret_bytes[..32]);
} else {
bytes.copy_from_slice(&secret_bytes)
bytes.copy_from_slice(&secret_bytes);
};

Ok(Keypair::ed25519_from_bytes(bytes)?)
Expand Down

0 comments on commit aa9a199

Please sign in to comment.