Skip to content

Commit 796ee36

Browse files
authored
Update ApplyData and EvalDelta. (#249)
1 parent fdcd3f6 commit 796ee36

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

types/block.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,9 @@ type (
194194
ReceiverRewards MicroAlgos `codec:"rr"`
195195
CloseRewards MicroAlgos `codec:"rc"`
196196
EvalDelta EvalDelta `codec:"dt"`
197+
198+
ConfigAsset uint64 `codec:"caid"`
199+
ApplicationID uint64 `codec:"apid"`
197200
}
198201
)
199202

@@ -205,6 +208,10 @@ type EvalDelta struct {
205208
// When decoding EvalDeltas, the integer key represents an offset into
206209
// [txn.Sender, txn.Accounts[0], txn.Accounts[1], ...]
207210
LocalDeltas map[uint64]StateDelta `codec:"ld,allocbound=config.MaxEvalDeltaAccounts"`
211+
212+
Logs []string `codec:"lg"`
213+
214+
InnerTxns []SignedTxnWithAD `codec:"itx"`
208215
}
209216

210217
// StateDelta is a map from key/value store keys to ValueDeltas, indicating

0 commit comments

Comments
 (0)