Skip to content

Commit

Permalink
gui: fix slots not loading
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcgee-jump committed Jan 23, 2025
1 parent b7d097f commit e550ee8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/disco/gui/fd_gui_printf.c
Original file line number Diff line number Diff line change
Expand Up @@ -1073,6 +1073,8 @@ fd_gui_printf_slot_request( fd_gui_t * gui,
else jsonp_ulong( gui, "transaction_fee", slot->transaction_fee );
if( FD_UNLIKELY( slot->priority_fee==ULONG_MAX ) ) jsonp_null( gui, "priority_fee" );
else jsonp_ulong( gui, "priority_fee", slot->priority_fee );
if( FD_UNLIKELY( slot->tips==ULONG_MAX ) ) jsonp_null( gui, "tips" );
else jsonp_ulong( gui, "tips", slot->tips );
jsonp_close_object( gui );

if( FD_LIKELY( slot->leader_state==FD_GUI_SLOT_LEADER_ENDED ) ) {
Expand Down

0 comments on commit e550ee8

Please sign in to comment.