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