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
파일 보기 프로젝트 열기: TangibleCryptography/BitSharper

공개 메소드들

메소드 설명
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