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) {