Skip to content

Commit d41eb42

Browse files
committed
Style.
1 parent f5b073d commit d41eb42

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/protocols/protocol_explore.cpp

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -323,20 +323,14 @@ bool protocol_explore::handle_get_block_fees(const code& ec,
323323
switch (media)
324324
{
325325
case data:
326-
{
327326
send_chunk(to_little_endian_size(fees));
328327
return true;
329-
}
330328
case text:
331-
{
332329
send_text(encode_base16(to_little_endian_size(fees)));
333330
return true;
334-
}
335331
case json:
336-
{
337332
send_json(fees, two * sizeof(fees));
338333
return true;
339-
}
340334
}
341335
}
342336

@@ -563,20 +557,14 @@ bool protocol_explore::handle_get_tx_fee(const code& ec, interface::tx_fee,
563557
switch (media)
564558
{
565559
case data:
566-
{
567560
send_chunk(to_little_endian_size(fee));
568561
return true;
569-
}
570562
case text:
571-
{
572563
send_text(encode_base16(to_little_endian_size(fee)));
573564
return true;
574-
}
575565
case json:
576-
{
577566
send_json(fee, two * sizeof(fee));
578567
return true;
579-
}
580568
}
581569
}
582570

0 commit comments

Comments
 (0)