ci and comments

This commit is contained in:
jonesmarvin8 2026-04-29 07:55:54 -04:00
parent 6fbe5e42c7
commit 780396f040
3 changed files with 1 additions and 2 deletions

View File

@ -14,7 +14,6 @@ pub struct WitnessSet {
impl WitnessSet {
#[must_use]
// TODO: swap for Keycard signing path.
// However. we may need to get signatures from Keycard.
pub fn for_message(message: &Message, proof: Proof, private_keys: &[&PrivateKey]) -> Self {
let message_hash = message.hash_message();
let signatures_and_public_keys = private_keys

View File

@ -72,7 +72,7 @@ impl WalletChainStore {
public_tree.insert(
data.account_id,
data.chain_index,
data.data.expect("Expect valid public account keys"),
data.data.expect("`chain_storage::WalletChainStore::new()`: failed to produce a Key Tree for a PersistentAccountData."),
);
}
PersistentAccountData::Private(data) => {