BitSharper.WalletCoinsReceivedEventArgs.WalletCoinsReceivedEventArgs C# (CSharp) 메소드

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
        public WalletCoinsReceivedEventArgs(Transaction tx, ulong prevBalance, ulong newBalance)
        {
            Tx = tx;
            PrevBalance = prevBalance;
            NewBalance = newBalance;
        }
WalletCoinsReceivedEventArgs