Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only include stakeholder contracts in result of query #7291

Merged
merged 4 commits into from
Sep 1, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update daml-script/runner/src/main/scala/com/digitalasset/daml/lf/eng…
…ine/script/LedgerInteraction.scala

Co-authored-by: Remy <remy.haemmerle@daml.com>
  • Loading branch information
cocreature and remyhaemmerle-da authored Sep 1, 2020
commit b4aa2ccaa61328cc33dd787c1f3deb3c80e44128
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,6 @@ class IdeClient(val compiledPackages: CompiledPackages) extends ScriptLedgerClie
val acs = scenarioRunner.ledger.query(
view = ScenarioLedger.ParticipantView(party.value),
effectiveAt = scenarioRunner.ledger.currentTime)
// Filter to contracts of the given template id.
val filtered = acs.collect {
case ScenarioLedger.LookupOk(cid, Value.ContractInst(tpl, arg, _), stakeholders) if tpl == templateId && stakeholders.contains(party.value) => (cid, arg)
}
Expand Down