tx_extra

  struct tx_extra_padding
  {
    size_t size;

    // load
    template <template <bool> class Archive>

    // store
    template <template <bool> class Archive>
  };
  struct tx_extra_pub_key
  {
    crypto::public_key pub_key;
  };

  struct tx_extra_nonce
  {
    std::string nonce;
  };
  struct tx_extra_additional_pub_keys
  {
    std::vector<crypto::public_key> data;
  };

  struct tx_extra_mysterious_minergate
  {
    std::string data;
  };

tx_extra_field

Last updated

Was this helpful?