Replace MakeSpan helper with Span deduction guide

This commit is contained in:
Pieter Wuille 2021-11-01 16:32:53 -04:00
parent 383d350bd5
commit 568dd2f839
16 changed files with 106 additions and 104 deletions

View file

@ -4937,5 +4937,5 @@ static const CRPCCommand commands[] =
{ "wallet", &walletprocesspsbt, },
};
// clang-format on
return MakeSpan(commands);
return Span{commands};
}