We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 146776d commit 80fff75Copy full SHA for 80fff75
src/main.rs
@@ -190,9 +190,9 @@ fn print_info(
190
191
info_string.push_str("========================================================\n");
192
info_string.push_str(&format!("Current Blockheight: {}\n", height));
193
- info_string.push_str(&format!("Current Tx Base Fee: {}", parameters.base_fee));
+ info_string.push_str(&format!("Current Tx Base Fee: {}\n", parameters.base_fee));
194
info_string.push_str(&format!(
195
- "Pool Posting Schedule: {} Blocks",
+ "Pool Posting Schedule: {} Blocks\n",
196
parameters.live_epoch_length + parameters.epoch_preparation_length
197
));
198
info_string.push_str(&format!("Oracle Pool NFT ID: {}", op.oracle_pool_nft));
0 commit comments