rippled
Loading...
Searching...
No Matches
invoice_id.cpp
1
2//------------------------------------------------------------------------------
3/*
4 This file is part of rippled: https://github.com/ripple/rippled
5 Copyright (c) 2012, 2013 Ripple Labs Inc.
6
7 Permission to use, copy, modify, and/or distribute this software for any
8 purpose with or without fee is hereby granted, provided that the above
9 copyright notice and this permission notice appear in all copies.
10
11 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18*/
19//==============================================================================
20
21#include <test/jtx/invoice_id.h>
22
23namespace ripple {
24namespace test {
25namespace jtx {
26
27void
29{
30 if (!hash_.isZero())
31 jt["InvoiceID"] = strHex(hash_);
32}
33
34} // namespace jtx
35} // namespace test
36} // namespace ripple
bool isZero() const
Definition: base_uint.h:540
A transaction testing environment.
Definition: Env.h:121
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition: algorithm.h:26
std::string strHex(FwdIt begin, FwdIt end)
Definition: strHex.h:30
Execution context for applying a JSON transaction.
Definition: JTx.h:45
void operator()(Env &, JTx &jt) const
Definition: invoice_id.cpp:28