We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a25c254 commit 4c4c55cCopy full SHA for 4c4c55c
protocol/config/consensus.go
@@ -229,6 +229,9 @@ type ConsensusParams struct {
229
// SupportRekeying indicates support for account rekeying (the RekeyTo and AuthAddr fields)
230
SupportRekeying bool
231
232
+ // EnforceAuthAddrSenderDiff requires that AuthAddr must be empty or different from Sender
233
+ EnforceAuthAddrSenderDiff bool
234
+
235
// application support
236
Application bool
237
@@ -1367,6 +1370,7 @@ func initConsensusProtocols() {
1367
1370
1368
1371
vFuture.AppSizeUpdates = true
1369
1372
vFuture.AllowZeroLocalAppRef = true
1373
+ vFuture.EnforceAuthAddrSenderDiff = true
1374
1375
Consensus[protocol.ConsensusFuture] = vFuture
1376
0 commit comments