BitSharper.WalletCoinsReceivedEventArgs.WalletCoinsReceivedEventArgs C# (CSharp) Method

WalletCoinsReceivedEventArgs() public method

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