BitSharper.WalletCoinsReceivedEventArgs.WalletCoinsReceivedEventArgs C# (CSharp) Méthode

WalletCoinsReceivedEventArgs() public méthode

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