| 40 | } |
| 41 | |
| 42 | std::string Transaction::toString () const |
| 43 | { |
| 44 | std::string output = "txn:\n"; |
| 45 | |
| 46 | for (auto& action : _actions) |
| 47 | { |
| 48 | output += action.toString (); |
| 49 | } |
| 50 | |
| 51 | return output; |
| 52 | } |
nothing calls this directly
no outgoing calls
no test coverage detected