aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/rpc/encrypt.cpp
AgeCommit message (Collapse)Author
2022-07-25scripted-diff: Replace NullUniValue with UniValue::VNULLMacroFake
This is required for removing the UniValue copy constructor. -BEGIN VERIFY SCRIPT- sed -i 's/return NullUniValue/return UniValue::VNULL/g' $(git grep -l NullUniValue ':(exclude)src/univalue') -END VERIFY SCRIPT-
2022-05-18scripted-diff: Use getInt<T> over get_int/get_int64MacroFake
-BEGIN VERIFY SCRIPT- sed -i 's|\<get_int64\>|getInt<int64_t>|g' $(git grep -l get_int ':(exclude)src/univalue') sed -i 's|\<get_int\>|getInt<int>|g' $(git grep -l get_int ':(exclude)src/univalue') -END VERIFY SCRIPT-
2022-02-21Replace "can not" with "cannot" in docs, user messages, and testsJon Atack
2022-01-06Add src/wallet/* code to wallet:: namespaceRussell Yanofsky
2021-12-03MOVEONLY: Move wallet encryption RPCs to encrypt.cppSamuel Dobson