Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/key_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ pub fn load_base64_secp256k1_key(
let signing = ecdsa::SigningKey::try_from(key_bytes.as_slice())
.map_err(|e| format_err!(InvalidKey, "invalid ECDSA key: {}", e))?;

let veryfing = ecdsa::VerifyingKey::from(&signing);
let verifying = ecdsa::VerifyingKey::from(&signing);

Ok((signing, veryfing))
Ok((signing, verifying))
}

/// Store Base64-encoded secret data at the given path
Expand Down
2 changes: 1 addition & 1 deletion tmkms.toml.example
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ path = "path/to/consensus-ed25519.key" # generate using `tmkms softsign keygen -

## (Optional) Transaction signer configuration

# example transaction signer: sign StdTx-strucutred transactions with a KMS-managed key
# example transaction signer: sign StdTx-structured transactions with a KMS-managed key
# [[tx_signer]]
# chain_id = "irishub"
# schema = "iris_tx_schema.toml" # See example TERRA_SCHEMA at https://docs.rs/stdtx#usage
Expand Down
Loading