From 784d5607e39049f81e467d379b46850725c196be Mon Sep 17 00:00:00 2001 From: Tsachi Herman Date: Wed, 21 Apr 2021 12:34:28 -0400 Subject: [PATCH 1/2] Clarify the content of the LocalDeltas --- dev/ledger.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev/ledger.md b/dev/ledger.md index 924d419..a9ed1cc 100644 --- a/dev/ledger.md +++ b/dev/ledger.md @@ -757,7 +757,9 @@ and contains the following fields: - `ld` maps an "account offset" to a [`StateDelta`][State Deltas]. Account offset 0 is the transaction's sender. Account offsets 1 and greater refer to the account specified at that offset minus one in the transaction's - `Accounts` slice. + `Accounts` slice. An account would have it’s `LocalDeltas` changes as long + as there is at least a single change in that set. + ### State Deltas From f089101897c9d11eb07a2e9d5ce26c9d9d39f3e6 Mon Sep 17 00:00:00 2001 From: Tsachi Herman Date: Wed, 21 Apr 2021 13:29:27 -0400 Subject: [PATCH 2/2] fix typo --- dev/ledger.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/ledger.md b/dev/ledger.md index a9ed1cc..3272629 100644 --- a/dev/ledger.md +++ b/dev/ledger.md @@ -757,7 +757,7 @@ and contains the following fields: - `ld` maps an "account offset" to a [`StateDelta`][State Deltas]. Account offset 0 is the transaction's sender. Account offsets 1 and greater refer to the account specified at that offset minus one in the transaction's - `Accounts` slice. An account would have it’s `LocalDeltas` changes as long + `Accounts` slice. An account would have its `LocalDeltas` changes as long as there is at least a single change in that set.