Interface IAppEvalDelta<TTxn>
Assembly: cs.temp.dll.dll
Syntax
public interface IAppEvalDelta<TTxn>
where TTxn : IAppliedSignedTxn<TTxn>
Type Parameters
Properties
GlobalDelta
Declaration
StateDelta GlobalDelta { get; set; }
Property Value
InnerTxns
The inner transactions (if any) that were evaluated.
Declaration
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
StateDelta[] LocalDeltas { get; set; }
Property Value
Logs
Logs from application calls
Declaration
string[] Logs { get; set; }
Property Value