| 336 | struct GetNonceCmd { |
| 337 | static const char* name; |
| 338 | static Future<Reference<ExtMsgReply>> call(Reference<ExtConnection> nmc, |
| 339 | Reference<ExtMsgQuery> query, |
| 340 | Reference<ExtMsgReply> reply) { |
| 341 | reply->addDocument(BSON("nonce" |
| 342 | << "0000000000000000" |
| 343 | << "ok" << 1.0)); |
| 344 | |
| 345 | return reply; |
| 346 | } |
| 347 | }; |
| 348 | |
| 349 | REGISTER_CMD(GetNonceCmd, "getnonce"); |
nothing calls this directly
no test coverage detected