Skip to content
Snippets Groups Projects

chore: abstract dtos to encompass a wider range of use cases and fix for out of band proof requests

Closed Boyan Tsolov requested to merge core-dtos into main
All threads resolved!
Compare and Show latest version
2 files
+ 5
6
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -410,8 +410,7 @@ export class AgentService {
if (acceptProofDto.proofUrl) {
return this.acceptOobProof(acceptProofDto.proofUrl);
}
// REVIEW: should the undefined case be covered inside acceptConnectionProof?
return this.acceptConnectionProof(acceptProofDto.proofRecordId as string);
return this.acceptConnectionProof(acceptProofDto.proofRecordId);
};
acceptOobProof = async (url: string) => {
Loading