| 60 | } |
| 61 | |
| 62 | static void indentStr(unsigned int prettyIndent, unsigned int indentLevel, std::string& s) |
| 63 | { |
| 64 | s.append(prettyIndent * indentLevel, ' '); |
| 65 | } |
| 66 | |
| 67 | void UniValue::writeArray(unsigned int prettyIndent, unsigned int indentLevel, std::string& s) const |
| 68 | { |
no outgoing calls
no test coverage detected