We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9e62d3 commit cfa0384Copy full SHA for cfa0384
include/univalue.h
@@ -92,6 +92,18 @@ class UniValue {
92
std::string s(val_);
93
return push_back(s);
94
}
95
+ bool push_back(uint64_t val_) {
96
+ UniValue tmpVal(val_);
97
+ return push_back(tmpVal);
98
+ }
99
+ bool push_back(int64_t val_) {
100
101
102
103
+ bool push_back(int val_) {
104
105
106
107
bool push_backV(const std::vector<UniValue>& vec);
108
109
bool pushKV(const std::string& key, const UniValue& val);
0 commit comments