1
0
Fork 0
forked from lthn/blockchain
blockchain/src/wallet/wallet_debug_events_definitions.h

36 lines
852 B
C

// Copyright (c) 2014-2023 Zano Project
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#pragma once
//Wallet Debug Events
struct wde_construct_tx_handle_asset_descriptor_operation
{
currency::asset_descriptor_operation* pado;
};
struct wde_construct_tx_handle_asset_descriptor_operation_before_seal
{
currency::asset_descriptor_operation* pado;
};
struct wde_construct_tx_handle_asset_descriptor_operation_before_burn
{
currency::asset_descriptor_operation* pado;
};
struct wde_construct_tx_after_asset_ownership_proof_generated
{
currency::asset_operation_ownership_proof* pownership_proof;
};
struct wde_construct_tx_after_asset_ownership_eth_proof_generated
{
currency::asset_operation_ownership_proof_eth* pownership_proof_eth;
};