Skip to content

Commit

Permalink
Update crates/fuel-core/src/service/genesis.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Brandon Kite <brandonkite92@gmail.com>
  • Loading branch information
xgreenx and Voxelot authored Nov 1, 2023
1 parent c0cfffe commit f070afe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/fuel-core/src/service/genesis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ fn init_coin_state(
coin.output_index.unwrap_or_else(|| {
generated_output_index = generated_output_index
.checked_add(1)
.expect("We don't support so many UTXOs in the genesis");
.expect("The maximum number of UTXOs supported in the genesis configuration has been exceeded.");
(generated_output_index % 255) as u8
}),
);
Expand Down

0 comments on commit f070afe

Please sign in to comment.