summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Jannotti <john.jannotti@algorand.com>2022-01-28 14:59:37 -0500
committerGitHub <noreply@github.com>2022-01-28 14:59:37 -0500
commit72d2b0c2461834b09a6d624373a23f82ba7a6542 (patch)
tree6845e8ca7a09656acbf65d38778f5ec5c73b3889
parent26321eccc46f224cd3dd50f12b9dca8592b41c38 (diff)
Tsachi review. (#3530)
-rw-r--r--config/consensus.go2
-rw-r--r--data/transactions/logic/README.md4
-rw-r--r--data/transactions/logic/README_in.md4
3 files changed, 5 insertions, 5 deletions
diff --git a/config/consensus.go b/config/consensus.go
index 22edb5f69..de58af7cc 100644
--- a/config/consensus.go
+++ b/config/consensus.go
@@ -287,7 +287,7 @@ type ConsensusParams struct {
// and enforced over the whole group.
MaxInnerTransactions int
- // should inner transaction limit be pooled across app calls?
+ // should the number of inner transactions be pooled across group?
EnableInnerTransactionPooling bool
// maximum number of applications a single account can create and store
diff --git a/data/transactions/logic/README.md b/data/transactions/logic/README.md
index 79cf215f9..e7fbda102 100644
--- a/data/transactions/logic/README.md
+++ b/data/transactions/logic/README.md
@@ -598,8 +598,8 @@ with the next instruction with, for example, `balance` and
`min_balance` checks. In v6, inner transactions may also perform
`keyreg` and `appl` effects.
-In v5, only a few of the Header fields may be set: `Type`/`TypeEnum`,
-`Sender`, and `Fee`. In v6, Header fields `Note` and `RekeyTo` may
+In v5, only a subset of the transaction's header fields may be set: `Type`/`TypeEnum`,
+`Sender`, and `Fee`. In v6, header fields `Note` and `RekeyTo` may
also be set. For the specific (non-header) fields of each transaction
type, any field may be set. This allows, for example, clawback
transactions, asset opt-ins, and asset creates in addition to the more
diff --git a/data/transactions/logic/README_in.md b/data/transactions/logic/README_in.md
index fb86cf3f8..5933d424d 100644
--- a/data/transactions/logic/README_in.md
+++ b/data/transactions/logic/README_in.md
@@ -313,8 +313,8 @@ with the next instruction with, for example, `balance` and
`min_balance` checks. In v6, inner transactions may also perform
`keyreg` and `appl` effects.
-In v5, only a few of the Header fields may be set: `Type`/`TypeEnum`,
-`Sender`, and `Fee`. In v6, Header fields `Note` and `RekeyTo` may
+In v5, only a subset of the transaction's header fields may be set: `Type`/`TypeEnum`,
+`Sender`, and `Fee`. In v6, header fields `Note` and `RekeyTo` may
also be set. For the specific (non-header) fields of each transaction
type, any field may be set. This allows, for example, clawback
transactions, asset opt-ins, and asset creates in addition to the more