Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions data/transactions/logic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand Down
4 changes: 2 additions & 2 deletions data/transactions/logic/TEAL_opcodes_v11.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions data/transactions/logic/fields.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Loading