participant-state-index: Use Ref directly. (#10299)

This avoids the dependency on _participant-state_.

CHANGELOG_BEGIN
CHANGELOG_END
This commit is contained in:
Samir Talwar 2021-07-15 19:21:03 +02:00 committed by GitHub
parent 0eba812109
commit 1ee53c0736
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -30,7 +30,6 @@ da_scala_library(
"//ledger/ledger-api-health",
"//ledger/ledger-configuration",
"//ledger/ledger-offset",
"//ledger/participant-state",
"//libs-scala/contextualized-logging",
"@maven//:com_google_protobuf_protobuf_java",
],

View File

@ -6,7 +6,7 @@ package com.daml.ledger.participant.state.index.v2
import akka.NotUsed
import akka.stream.scaladsl.Source
import com.daml.ledger.api.domain.{LedgerOffset, PartyDetails, PartyEntry}
import com.daml.ledger.participant.state.v1.{ParticipantId, Party}
import com.daml.lf.data.Ref.{ParticipantId, Party}
import com.daml.logging.LoggingContext
import scala.concurrent.Future