diff options
author | Jeff Garzik <jgarzik@bitpay.com> | 2014-06-23 23:10:24 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@bitpay.com> | 2014-07-29 11:13:27 -0400 |
commit | ae775b5b311982a3d932a9e34ddc94ce597dcaaf (patch) | |
tree | 39bdd6b040c905395473564b0d2e6c7808270133 /src/core_io.h | |
parent | 29203228710de3e180914c1d66f48dd7e41270a0 (diff) |
Consolidate CTransaction hex encode/decode into core_io.h, core_{read,write}.cpp
Diffstat (limited to 'src/core_io.h')
-rw-r--r-- | src/core_io.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/core_io.h b/src/core_io.h new file mode 100644 index 0000000000..257dac3627 --- /dev/null +++ b/src/core_io.h @@ -0,0 +1,14 @@ +#ifndef __BITCOIN_CORE_IO_H__ +#define __BITCOIN_CORE_IO_H__ + +#include <string> + +class CTransaction; + +// core_read.cpp +extern bool DecodeHexTx(CTransaction& tx, const std::string& strHexTx); + +// core_write.cpp +extern std::string EncodeHexTx(const CTransaction& tx); + +#endif // __BITCOIN_CORE_IO_H__ |