Struct EvalDelta<TTxn>
Stores StateDelta for an application's global key/value store,
and a number of accounts holding local state for that application.
Assembly: cs.temp.dll.dll
Syntax
public struct EvalDelta<TTxn> : IEquatable<EvalDelta<TTxn>>, IAppEvalDelta<TTxn> where TTxn : IAppliedSignedTxn<TTxn>
Type Parameters
Properties
GlobalDelta
Declaration
public StateDelta GlobalDelta { get; set; }
Property Value
InnerTxns
The inner transactions (if any) that were evaluated.
Declaration
public TTxn[] InnerTxns { get; set; }
Property Value
LocalDeltas
When decoding EvalDeltas, the integer key represents an offset into
[txn.Sender, txn.Accounts[0], txn.Accounts[1], ...]
Declaration
public StateDelta[] LocalDeltas { get; set; }
Property Value
Logs
Logs from application calls
Declaration
public string[] Logs { get; set; }
Property Value
Methods
Equals(EvalDelta<TTxn>)
Declaration
public bool Equals(EvalDelta<TTxn> other)
Parameters
Returns
Implements