diff --git a/src/Angor/Shared/ProtocolNew/FounderTransactionActions.cs b/src/Angor/Shared/ProtocolNew/FounderTransactionActions.cs index c8ff6a4c..25e63d92 100644 --- a/src/Angor/Shared/ProtocolNew/FounderTransactionActions.cs +++ b/src/Angor/Shared/ProtocolNew/FounderTransactionActions.cs @@ -69,6 +69,10 @@ public SignatureInfo SignInvestorRecoveryTransactions(ProjectInfo projectInfo, s _logger.LogInformation($"creating sig for project={projectInfo.ProjectIdentifier}; founder-recovery-pubkey={key.PubKey.ToHex()}; stage={stageIndex}; hash={hash}; signature-hex={sig}"); + var result = key.PubKey.GetTaprootFullPubKey().VerifySignature(hash, TaprootSignature.Parse(sig).SchnorrSignature); + + _logger.LogInformation($"verification = {result}"); + info.Signatures.Add(new SignatureInfoItem { Signature = sig, StageIndex = stageIndex }); }