Skip to content

Commit ea51a77

Browse files
committed
2 parents 9449fd4 + 300fb7b commit ea51a77

File tree

1 file changed

+5
-1
lines changed
  • app/src/main/kotlin/org/example

1 file changed

+5
-1
lines changed

app/src/main/kotlin/org/example/App.kt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,11 @@ class MempoolSignet {
102102

103103
// Placeholder: Simulate broadcasting a transaction to the Mempool Signet.
104104
fun broadcastTransaction(transaction: String): String {
105-
return "Transaction '$transaction' broadcasted to Mempool Signet."
105+
return kotlin.text.buildString {
106+
append("Transaction '")
107+
append(transaction)
108+
append("' broadcasted to Mempool Signet.")
109+
}
106110
}
107111
}
108112

0 commit comments

Comments
 (0)