Minor: fix a minor merge issue that broke pretty output in the trader demo

This commit is contained in:
Mike Hearn 2016-02-16 17:17:15 +01:00
parent 994abb3edb
commit 8c72f68736

View File

@ -110,7 +110,7 @@ fun main(args: Array<String>) {
println()
println("Purchase complete - we are a happy customer! Final transaction is:")
println()
println(Emoji.renderIfSupported(it))
println(Emoji.renderIfSupported(it.tx))
println()
println("Waiting for another seller to connect. Or press Ctrl-C to shut me down.")
}
@ -145,7 +145,7 @@ fun main(args: Array<String>) {
println()
println("Final transaction is")
println()
println(Emoji.renderIfSupported(it))
println(Emoji.renderIfSupported(it.tx))
println()
node.stop()
}