mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-02-23 22:56:52 +01:00
Began work on replacing bad uses of Thread.sleep
This commit is contained in:
parent
04bace39d0
commit
a9162a3f4d
1 changed files with 2 additions and 1 deletions
|
@ -23,7 +23,8 @@ object JsonWriters {
|
|||
}
|
||||
|
||||
implicit object ScriptPubKeyWrites extends Writes[ScriptPubKey] {
|
||||
override def writes(o: ScriptPubKey): JsValue = JsString(BitcoinSUtil.encodeHex(o.asmBytes))
|
||||
override def writes(o: ScriptPubKey): JsValue =
|
||||
JsString(BitcoinSUtil.encodeHex(o.asmBytes))
|
||||
}
|
||||
|
||||
implicit object TransactionInputWrites extends Writes[TransactionInput] {
|
||||
|
|
Loading…
Add table
Reference in a new issue