diff --git a/synthesizer/process/src/stack/mod.rs b/synthesizer/process/src/stack/mod.rs index 44cbe08dde..3c8ec34874 100644 --- a/synthesizer/process/src/stack/mod.rs +++ b/synthesizer/process/src/stack/mod.rs @@ -319,7 +319,7 @@ impl StackProgram for Stack { } } - /// Returns a record for the given record name, with the given burner address. + /// Returns a record for the given record name, with the given burner address and nonce. fn sample_record( &self, burner_address: &Address, diff --git a/synthesizer/program/src/traits/stack_and_registers.rs b/synthesizer/program/src/traits/stack_and_registers.rs index aa6d15b206..1decf4c9d7 100644 --- a/synthesizer/program/src/traits/stack_and_registers.rs +++ b/synthesizer/program/src/traits/stack_and_registers.rs @@ -94,7 +94,7 @@ pub trait StackProgram { rng: &mut R, ) -> Result>; - /// Returns a record for the given record name, with the given burner address. + /// Returns a record for the given record name, with the given burner address and nonce. fn sample_record( &self, burner_address: &Address,