Skip to content

Commit

Permalink
use randomized participant did on every run
Browse files Browse the repository at this point in the history
  • Loading branch information
paullatzelsperger committed Aug 23, 2024
1 parent 87d4237 commit e2b0836
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public ParticipantManifest.Builder createNewParticipant() {
return ParticipantManifest.Builder.newInstance()
.participantId("another-participant")
.active(false)
.did("did:web:another:participant")
.did("did:web:another:participant:" + UUID.randomUUID())
.serviceEndpoint(new Service("test-service", "test-service-type", "https://test.com"))
.key(createKeyDescriptor().build());
}
Expand Down

0 comments on commit e2b0836

Please sign in to comment.