@@ -201,8 +201,9 @@ impl fmt::Display for GetBlockchainInfoError {
201201
202202 match * self {
203203 Chain ( ref e) => write_err ! ( f, "conversion of the `chain` field failed" ; e) ,
204- BestBlockHash ( ref e) =>
205- write_err ! ( f, "conversion of the `best_block_hash` field failed" ; e) ,
204+ BestBlockHash ( ref e) => {
205+ write_err ! ( f, "conversion of the `best_block_hash` field failed" ; e)
206+ }
206207 ChainWork ( ref e) => write_err ! ( f, "conversion of the `chain_work` field failed" ; e) ,
207208 }
208209 }
@@ -369,10 +370,12 @@ impl fmt::Display for GetBlockVerbosityOneError {
369370 Tx ( ref e) => write_err ! ( f, "conversion of the `tx` field failed" ; e) ,
370371 Bits ( ref e) => write_err ! ( f, "conversion of the `bits` field failed" ; e) ,
371372 ChainWork ( ref e) => write_err ! ( f, "conversion of the `chain_ork` field failed" ; e) ,
372- PreviousBlockHash ( ref e) =>
373- write_err ! ( f, "conversion of the `previous_block_hash` field failed" ; e) ,
374- NextBlockHash ( ref e) =>
375- write_err ! ( f, "conversion of the `next_block_hash` field failed" ; e) ,
373+ PreviousBlockHash ( ref e) => {
374+ write_err ! ( f, "conversion of the `previous_block_hash` field failed" ; e)
375+ }
376+ NextBlockHash ( ref e) => {
377+ write_err ! ( f, "conversion of the `next_block_hash` field failed" ; e)
378+ }
376379 }
377380 }
378381}
@@ -481,8 +484,9 @@ impl fmt::Display for GetTxOutError {
481484 match * self {
482485 BestBlock ( ref e) => write_err ! ( f, "conversion of the `best_block` field failed" ; e) ,
483486 Value ( ref e) => write_err ! ( f, "conversion of the `value` field failed" ; e) ,
484- ScriptPubkey ( ref e) =>
485- write_err ! ( f, "conversion of the `script_pubkey` field failed" ; e) ,
487+ ScriptPubkey ( ref e) => {
488+ write_err ! ( f, "conversion of the `script_pubkey` field failed" ; e)
489+ }
486490 Address ( ref e) => write_err ! ( f, "conversion of the `address` field failed" ; e) ,
487491 }
488492 }
0 commit comments