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 b6b2e3f commit 672665aCopy full SHA for 672665a
node/src/actors/rad_manager/handlers.rs
@@ -74,12 +74,14 @@ impl Handler<ResolveRA> for RadManager {
74
// Perform aggregation on the values that made it to the output vector after applying the
75
// source scripts (aka _normalization scripts_ in the original whitepaper) and filtering out
76
// failures.
77
- witnet_rad::run_aggregation_report(
+ let (res, _) = witnet_rad::run_aggregation_report(
78
values,
79
&aggregator,
80
RadonScriptExecutionSettings::all_but_partial_results(),
81
msg.active_wips,
82
- )
+ );
83
+
84
+ res
85
}
86
Ok(TallyPreconditionClauseResult::MajorityOfErrors { errors_mode }) => {
87
Ok(RadonReport::from_result(
0 commit comments