Skip to content

Commit

Permalink
fix: change order of descriptor variables (#15016)
Browse files Browse the repository at this point in the history
Signed-off-by: Lazar Petrovic <[email protected]>
  • Loading branch information
lpetrovic05 authored Aug 22, 2024
1 parent 3747e61 commit 23c60ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public UnsignedEvent(
HapiUtils.asTimestamp(timeCreated),
this.allParents.stream()
.map(ed -> new com.hedera.hapi.platform.event.EventDescriptor(
ed.getHash().getBytes(), ed.getCreator().id(), ed.getGeneration(), ed.getBirthRound()))
ed.getHash().getBytes(), ed.getCreator().id(), ed.getBirthRound(), ed.getGeneration()))
.toList(),
softwareVersion.getPbjSemanticVersion());
this.transactions = transactions.stream().map(PayloadWrapper::new).toList();
Expand Down

0 comments on commit 23c60ad

Please sign in to comment.