diff --git a/src/cpp/HTTPInterface/CheckTransactionPage.cpp b/src/cpp/HTTPInterface/CheckTransactionPage.cpp index bb6ea922d..407f97bd2 100644 --- a/src/cpp/HTTPInterface/CheckTransactionPage.cpp +++ b/src/cpp/HTTPInterface/CheckTransactionPage.cpp @@ -498,8 +498,8 @@ void CheckTransactionPage::handleRequest(Poco::Net::HTTPServerRequest& request, responseStream << "
Verwendungszweck:
+<%= transactionBody.memo() %>
+ <% if(transactionBody.has_transfer()) { + auto transfer = transactionBody.transfer(); + %> +pubkey: <%= hex %>
+amount: <%= sender.amount() %>
+ <% } %> + Receiver + <% for(int i = 0; i < transfer.receiveramounts_size(); i++) { + auto receiver = transfer.receiveramounts(i); + char hex[65]; memset(hex, 0, 65); + sodium_bin2hex(hex, 65, (const unsigned char*)receiver.ed25519_receiver_pubkey().data(), receiver.ed25519_receiver_pubkey().size()); + %> +pubkey: <%= hex %>
+amount: <%= receiver.amount() %>
+ <% } %> + <% } else if(transactionBody.has_creation()) { %> +