From 04a9574c4196991856beb9d1071b7a454438d287 Mon Sep 17 00:00:00 2001 From: John Jannotti Date: Fri, 20 Dec 2024 08:48:58 -0800 Subject: [PATCH] typos and a payout detail --- data/transactions/logic/README.md | 4 ++-- data/transactions/logic/TEAL_opcodes_v11.md | 4 ++-- data/transactions/logic/fields.go | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/data/transactions/logic/README.md b/data/transactions/logic/README.md index 269832d38a..8f5fbee163 100644 --- a/data/transactions/logic/README.md +++ b/data/transactions/logic/README.md @@ -639,8 +639,8 @@ Global fields are fields that are common to all the transactions in the group. I | 18 | PayoutsEnabled | bool | v11 | Whether block proposal payouts are enabled. | | 19 | PayoutsGoOnlineFee | uint64 | v11 | The fee required in a keyreg transaction to make an account incentive eligible. | | 20 | PayoutsPercent | uint64 | v11 | The percentage of transaction fees in a block that can be paid to the block proposer. | -| 21 | PayoutsMinBalance | uint64 | v11 | The minimum algo balance an account must have in the agreement round to receive block payouts in the proposal round. | -| 22 | PayoutsMaxBalance | uint64 | v11 | The maximum algo balance an account can have in the agreement round to receive block payouts in the proposal round. | +| 21 | PayoutsMinBalance | uint64 | v11 | The minimum balance an account must have in the agreement round to receive block payouts in the proposal round. | +| 22 | PayoutsMaxBalance | uint64 | v11 | The maximum balance an account can have in the agreement round to receive block payouts in the proposal round. | **Asset Fields** diff --git a/data/transactions/logic/TEAL_opcodes_v11.md b/data/transactions/logic/TEAL_opcodes_v11.md index 8bbad2e206..f302bca1e5 100644 --- a/data/transactions/logic/TEAL_opcodes_v11.md +++ b/data/transactions/logic/TEAL_opcodes_v11.md @@ -465,8 +465,8 @@ Fields | 18 | PayoutsEnabled | bool | v11 | Whether block proposal payouts are enabled. | | 19 | PayoutsGoOnlineFee | uint64 | v11 | The fee required in a keyreg transaction to make an account incentive eligible. | | 20 | PayoutsPercent | uint64 | v11 | The percentage of transaction fees in a block that can be paid to the block proposer. | -| 21 | PayoutsMinBalance | uint64 | v11 | The minimum algo balance an account must have in the agreement round to receive block payouts in the proposal round. | -| 22 | PayoutsMaxBalance | uint64 | v11 | The maximum algo balance an account can have in the agreement round to receive block payouts in the proposal round. | +| 21 | PayoutsMinBalance | uint64 | v11 | The minimum balance an account must have in the agreement round to receive block payouts in the proposal round. | +| 22 | PayoutsMaxBalance | uint64 | v11 | The maximum balance an account can have in the agreement round to receive block payouts in the proposal round. | ## gtxn diff --git a/data/transactions/logic/fields.go b/data/transactions/logic/fields.go index 3ec054919a..802362c550 100644 --- a/data/transactions/logic/fields.go +++ b/data/transactions/logic/fields.go @@ -626,9 +626,9 @@ var globalFieldSpecs = [...]globalFieldSpec{ {PayoutsPercent, StackUint64, modeAny, incentiveVersion, "The percentage of transaction fees in a block that can be paid to the block proposer."}, {PayoutsMinBalance, StackUint64, modeAny, incentiveVersion, - "The minimum algo balance an account must have in the agreement round to receive block payouts in the proposal round."}, + "The minimum balance an account must have in the agreement round to receive block payouts in the proposal round."}, {PayoutsMaxBalance, StackUint64, modeAny, incentiveVersion, - "The maximum algo balance an account can have in the agreement round to receive block payouts in the proposal round."}, + "The maximum balance an account can have in the agreement round to receive block payouts in the proposal round."}, } func globalFieldSpecByField(f GlobalField) (globalFieldSpec, bool) {