(
&self,
args: BuildArguments<Self::Attributes, Self::BuiltPayload>,
)
| 260 | type BuiltPayload = BaseBuiltPayload<N>; |
| 261 | |
| 262 | fn try_build( |
| 263 | &self, |
| 264 | args: BuildArguments<Self::Attributes, Self::BuiltPayload>, |
| 265 | ) -> Result<BuildOutcome<Self::BuiltPayload>, PayloadBuilderError> { |
| 266 | let pool = self.pool.clone(); |
| 267 | self.build_payload(args, |attrs| self.best_transactions.best_transactions(pool, attrs)) |
| 268 | } |
| 269 | |
| 270 | fn on_missing_payload( |
| 271 | &self, |
nothing calls this directly
no test coverage detected