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 49f6c73 commit f262b4eCopy full SHA for f262b4e
lib/executor/src/executors/map.rs
@@ -69,7 +69,7 @@ impl SubgraphExecutorMap {
69
BooleanOrExpression::Boolean(b) => BooleanOrProgram::Boolean(*b),
70
BooleanOrExpression::Expression { expression } => {
71
let program = compile_expression(expression, None)
72
- .map_err(|err| SubgraphExecutorError::HMACExpressionBuild(err))?;
+ .map_err(SubgraphExecutorError::HMACExpressionBuild)?;
73
BooleanOrProgram::Program(Box::new(program))
74
}
75
};
0 commit comments