Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- wallet/rpcwallet.cpp:3404:17: error: no matching constructor for initialization of 'RPCResult'
- RPCResult{
- ^ ~
- ./rpc/util.h:225:5: note: candidate constructor not viable: cannot convert initializer list argument to 'const std::string' (aka 'const basic_string<char>')
- RPCResult(
- ^
- ./rpc/util.h:244:5: note: candidate constructor not viable: cannot convert initializer list argument to 'const std::string' (aka 'const basic_string<char>')
- RPCResult(
- ^
- ./rpc/util.h:252:5: note: candidate constructor not viable: cannot convert initializer list argument to 'const RPCResult::Type'
- RPCResult(
- ^
- ./rpc/util.h:269:5: note: candidate constructor not viable: requires at most 4 arguments, but 5 were provided
- RPCResult(
- ^
- ./rpc/util.h:202:8: note: candidate constructor (the implicit copy constructor) not viable: requires 1 argument, but 5 were provided
- struct RPCResult {
- ^
- ./rpc/util.h:202:8: note: candidate constructor (the implicit move constructor) not viable: requires 1 argument, but 5 were provided
- wallet/rpcwallet.cpp:3419:14: error: cannot use dot operator on a type
- }.Check(request);
- ^
- wallet/rpcwallet.cpp:3421:5: error: C++ requires a type specifier for all declarations
- RPCTypeCheck(request.params, {UniValue::VSTR, UniValue::VOBJ});
- ^
- wallet/rpcwallet.cpp:3421:18: error: use of undeclared identifier 'request'
- RPCTypeCheck(request.params, {UniValue::VSTR, UniValue::VOBJ});
- ^
- wallet/rpcwallet.cpp:3422:29: error: use of undeclared identifier 'request'
- uint256 hash(ParseHashV(request.params[0], "txid"));
- ^
- wallet/rpcwallet.cpp:3425:5: error: unknown type name 'coin_control'; did you mean 'CCoinControl'?
- coin_control.fAllowWatchOnly = pwallet->IsWalletFlagSet(WALLET_FLAG_DISABLE_PRIVATE_KEYS);
- ^~~~~~~~~~~~
- CCoinControl
- ./wallet/wallet.h:93:7: note: 'CCoinControl' declared here
- class CCoinControl;
- ^
- wallet/rpcwallet.cpp:3425:17: error: cannot use dot operator on a type
- coin_control.fAllowWatchOnly = pwallet->IsWalletFlagSet(WALLET_FLAG_DISABLE_PRIVATE_KEYS);
- ^
- wallet/rpcwallet.cpp:3428:5: error: unknown type name 'coin_control'; did you mean 'CCoinControl'?
- coin_control.m_signal_bip125_rbf = true;
- ^~~~~~~~~~~~
- CCoinControl
- ./wallet/wallet.h:93:7: note: 'CCoinControl' declared here
- class CCoinControl;
- ^
- wallet/rpcwallet.cpp:3428:17: error: cannot use dot operator on a type
- coin_control.m_signal_bip125_rbf = true;
- ^
- wallet/rpcwallet.cpp:3430:5: error: expected unqualified-id
- if (!request.params[1].isNull()) {
- ^
- wallet/rpcwallet.cpp:3475:5: error: unknown type name 'pwallet'; did you mean 'CWallet'?
- pwallet->BlockUntilSyncedToCurrentChain();
- ^~~~~~~
- CWallet
- ./wallet/rpcwallet.h:13:7: note: 'CWallet' declared here
- class CWallet;
- ^
- wallet/rpcwallet.cpp:3475:12: error: cannot use arrow operator on a type
- pwallet->BlockUntilSyncedToCurrentChain();
- ^
- wallet/rpcwallet.cpp:3477:25: error: use of undeclared identifier 'pwallet'
- auto locked_chain = pwallet->chain().lock();
- ^
- wallet/rpcwallet.cpp:3478:10: error: use of undeclared identifier 'pwallet'
- LOCK(pwallet->cs_wallet);
- ^
- wallet/rpcwallet.cpp:3478:10: error: use of undeclared identifier 'pwallet'
- wallet/rpcwallet.cpp:3479:5: error: unknown type name 'EnsureWalletIsUnlocked'
- EnsureWalletIsUnlocked(pwallet);
- ^
- wallet/rpcwallet.cpp:3487:5: error: expected unqualified-id
- if (totalFee > 0) {
- ^
- wallet/rpcwallet.cpp:3490:7: error: expected unqualified-id
- } else {
- ^
- wallet/rpcwallet.cpp:3494:5: error: expected unqualified-id
- if (res != feebumper::Result::OK) {
- ^
- fatal error: too many errors emitted, stopping now [-ferror-limit=]
- 20 errors generated.
Advertisement
Add Comment
Please, Sign In to add comment