forked from lthn/blockchain
32 lines
710 B
C
32 lines
710 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;
|
|
};
|
|
|