Add missing TransactionId to com.daml.error.ErrorResource (#11396)

CHANGELOG_BEGIN
CHANGELOG_END
This commit is contained in:
tudor-da 2021-10-26 11:32:15 +02:00 committed by GitHub
parent a2a15716b4
commit ba6c2be1b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ trait ErrorResource {
object ErrorResource {
private lazy val all =
Seq(ContractId, ContractKey, DalfPackage, LedgerId, CommandId)
Seq(ContractId, ContractKey, DalfPackage, LedgerId, CommandId, TransactionId)
def fromString(str: String): Option[ErrorResource] = all.find(_.asString == str)