Skip to content

Commit 80fff75

Browse files
committed
Fixed printing new line
1 parent 146776d commit 80fff75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,9 @@ fn print_info(
190190

191191
info_string.push_str("========================================================\n");
192192
info_string.push_str(&format!("Current Blockheight: {}\n", height));
193-
info_string.push_str(&format!("Current Tx Base Fee: {}", parameters.base_fee));
193+
info_string.push_str(&format!("Current Tx Base Fee: {}\n", parameters.base_fee));
194194
info_string.push_str(&format!(
195-
"Pool Posting Schedule: {} Blocks",
195+
"Pool Posting Schedule: {} Blocks\n",
196196
parameters.live_epoch_length + parameters.epoch_preparation_length
197197
));
198198
info_string.push_str(&format!("Oracle Pool NFT ID: {}", op.oracle_pool_nft));

0 commit comments

Comments
 (0)