C# Класс BitSharper.WalletCoinsReceivedEventArgs

This is called on a Peer thread when a block is received that sends some coins to you. Note that this will also be called when downloading the block chain as the wallet balance catches up so if you don't want that register the event listener after the chain is downloaded. It's safe to use methods of wallet during the execution of this callback.
Наследование: System.EventArgs
Показать файл Открыть проект

Открытые методы

Метод Описание
WalletCoinsReceivedEventArgs ( Transaction tx, ulong prevBalance, ulong newBalance ) : System

Описание методов

WalletCoinsReceivedEventArgs() публичный Метод

public WalletCoinsReceivedEventArgs ( Transaction tx, ulong prevBalance, ulong newBalance ) : System
tx Transaction The transaction which sent us the coins.
prevBalance ulong Balance before the coins were received.
newBalance ulong Current balance of the wallet.
Результат System