Skip to content

Commit

Permalink
missed fn
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Coats committed Oct 2, 2023
1 parent 71737d6 commit c6dc5e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/src/types/block/core/basic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ impl BasicBlockBuilder {
self
}

/// Adds burned mana to a [`BasicBlockBuilder`].
/// Adds max burned mana to a [`BasicBlockBuilder`].
#[inline(always)]
pub fn with_max_burned_mana(mut self, max_burned_mana: u64) -> Self {
self.max_burned_mana = max_burned_mana;
Expand Down Expand Up @@ -137,7 +137,7 @@ impl BasicBlock {
self.payload.as_ref()
}

/// Returns the burned mana of a [`BasicBlock`].
/// Returns the max burned mana of a [`BasicBlock`].
#[inline(always)]
pub fn burned_mana(&self) -> u64 {
self.max_burned_mana
Expand Down

0 comments on commit c6dc5e5

Please sign in to comment.