ENT-10122: Removed commented code left in.

This commit is contained in:
Adel El-Beik 2023-07-20 09:31:46 +01:00
parent aa9e41c7c2
commit 117d319317

View File

@ -119,7 +119,7 @@ class Vault<out T : ContractState>(val states: Iterable<StateAndRef<T>>) {
val combinedProduced = produced.filter { it !in rhs.consumed }.toSet() + rhs.produced
return copy(consumed = combinedConsumed, produced = combinedProduced, references = references + rhs.references, consumingTxIds = consumingTxIds + rhs.consumingTxIds)
}
//val consumingTxIds: Map<StateRef, SecureHash> = emptyMap()
override fun toString(): String {
val sb = StringBuilder()
sb.appendln("${consumed.size} consumed, ${produced.size} produced")