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 a1cf394 commit 952af97Copy full SHA for 952af97
src/interpreter/mod.rs
@@ -565,7 +565,7 @@ where
565
node: &'intp Miniscript<BitcoinKey, NoChecks>,
566
n_evaluated: usize,
567
n_satisfied: usize,
568
- ) -> () {
+ ) {
569
self.state.push(NodeEvaluationState {
570
node,
571
n_evaluated,
src/interpreter/stack.rs
@@ -115,7 +115,7 @@ impl<'txin> Stack<'txin> {
115
}
116
117
/// Pushes an element onto the top of the stack
118
- pub fn push(&mut self, elem: Element<'txin>) -> () {
+ pub fn push(&mut self, elem: Element<'txin>) {
119
self.0.push(elem);
120
121
0 commit comments