rawtransaction.h raw

   1  // Copyright (c) 2017-2022 The Limenka developers
   2  // Distributed under the MIT software license, see the accompanying
   3  // file COPYING or http://www.opensource.org/licenses/mit-license.php.
   4  
   5  #ifndef LIMENKA_RPC_RAWTRANSACTION_H
   6  #define LIMENKA_RPC_RAWTRANSACTION_H
   7  
   8  #include <string>
   9  
  10  struct RPCResult;
  11  
  12  std::vector<RPCResult> DecodeTxDoc(const std::string& txid_field_doc);
  13  
  14  #endif // LIMENKA_RPC_RAWTRANSACTION_H
  15