Add management fee callbacks

This commit is contained in:
boris
2026-04-23 20:18:31 -07:00
parent 85feee6dac
commit c843de078f
9 changed files with 241 additions and 10 deletions

View File

@@ -933,6 +933,12 @@ where
));
Ok(())
}
OrderIntent::SetManagementFeeRate { rate, reason } => {
report.diagnostics.push(format!(
"engine_account_intent_skipped kind=set_management_fee_rate rate={rate:.6} reason={reason}"
));
Ok(())
}
}
}