diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-09-08 01:11:23 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-09-08 01:16:54 +0200 |
| commit | efb4383ef6c69e801ddca160a53e7fb4ee8b156a (patch) | |
| tree | 9e2f3b36fcb979c35253d96d2911e95226730d27 /src/rpc/misc.cpp | |
| parent | Merge #10756: net processing: swap out signals for an interface class (diff) | |
| parent | Changing &vec[0] to vec.data(), what 9804 missed (diff) | |
| download | discoin-efb4383ef6c69e801ddca160a53e7fb4ee8b156a.tar.xz discoin-efb4383ef6c69e801ddca160a53e7fb4ee8b156a.zip | |
Merge #10793: Changing &var[0] to var.data()
592404f03 Changing &vec[0] to vec.data(), what 9804 missed (MeshCollider)
Pull request description:
This just continues the work of https://github.com/bitcoin/bitcoin/pull/9804
Modifies a lot of `&vector[]`'s to `vector.data()`'s across all the files including tests, just the stuff that 9804 missed
Tree-SHA512: dd1a9dffb999dea4fba78dcc91fe02f90250db86f5c74948e1ff3e8b4036b2154b600555eaa04dece5368920aae3513bc36425dc96e4319ca1041b0928a6b656
Diffstat (limited to 'src/rpc/misc.cpp')
| -rw-r--r-- | src/rpc/misc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/misc.cpp b/src/rpc/misc.cpp index 2037ebe3c..f8cdf57d1 100644 --- a/src/rpc/misc.cpp +++ b/src/rpc/misc.cpp @@ -371,7 +371,7 @@ UniValue signmessagewithprivkey(const JSONRPCRequest& request) if (!key.SignCompact(ss.GetHash(), vchSig)) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Sign failed"); - return EncodeBase64(&vchSig[0], vchSig.size()); + return EncodeBase64(vchSig.data(), vchSig.size()); } UniValue setmocktime(const JSONRPCRequest& request) |