-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Quorum Privacy Precompile to ActivePrecompiles list
This is currently only used for the experimental YoloV2 EIP 2929 (where all active precompiles for the current block height must be known) so not critical but worth fixing ahead of the concrete release that will be pulled in from a future upstream geth merge
- Loading branch information
Showing
2 changed files
with
112 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
package vm | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/ethereum/go-ethereum/common" | ||
"github.com/ethereum/go-ethereum/params" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestActivePrecompiles(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
evm *EVM | ||
want []common.Address | ||
}{ | ||
{ | ||
name: "istanbul-plus-quorum-privacy", | ||
evm: &EVM{ | ||
chainRules: params.Rules{ | ||
IsIstanbul: true, | ||
IsPrivacyPrecompile: true, | ||
}, | ||
}, | ||
want: []common.Address{ | ||
common.BytesToAddress([]byte{1}), | ||
common.BytesToAddress([]byte{2}), | ||
common.BytesToAddress([]byte{3}), | ||
common.BytesToAddress([]byte{4}), | ||
common.BytesToAddress([]byte{5}), | ||
common.BytesToAddress([]byte{6}), | ||
common.BytesToAddress([]byte{7}), | ||
common.BytesToAddress([]byte{8}), | ||
common.BytesToAddress([]byte{9}), | ||
common.QuorumPrivacyPrecompileContractAddress(), | ||
}, | ||
}, | ||
{ | ||
name: "homestead-plus-quorum-privacy", | ||
evm: &EVM{ | ||
chainRules: params.Rules{ | ||
IsHomestead: true, | ||
IsPrivacyPrecompile: true, | ||
}, | ||
}, | ||
want: []common.Address{ | ||
common.BytesToAddress([]byte{1}), | ||
common.BytesToAddress([]byte{2}), | ||
common.BytesToAddress([]byte{3}), | ||
common.BytesToAddress([]byte{4}), | ||
common.QuorumPrivacyPrecompileContractAddress(), | ||
}, | ||
}, | ||
{ | ||
name: "istanbul", | ||
evm: &EVM{ | ||
chainRules: params.Rules{ | ||
IsIstanbul: true, | ||
IsPrivacyPrecompile: false, | ||
}, | ||
}, | ||
want: []common.Address{ | ||
common.BytesToAddress([]byte{1}), | ||
common.BytesToAddress([]byte{2}), | ||
common.BytesToAddress([]byte{3}), | ||
common.BytesToAddress([]byte{4}), | ||
common.BytesToAddress([]byte{5}), | ||
common.BytesToAddress([]byte{6}), | ||
common.BytesToAddress([]byte{7}), | ||
common.BytesToAddress([]byte{8}), | ||
common.BytesToAddress([]byte{9}), | ||
}, | ||
}, | ||
{ | ||
name: "homestead", | ||
evm: &EVM{ | ||
chainRules: params.Rules{ | ||
IsHomestead: true, | ||
IsPrivacyPrecompile: false, | ||
}, | ||
}, | ||
want: []common.Address{ | ||
common.BytesToAddress([]byte{1}), | ||
common.BytesToAddress([]byte{2}), | ||
common.BytesToAddress([]byte{3}), | ||
common.BytesToAddress([]byte{4}), | ||
}, | ||
}, | ||
} | ||
|
||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
got := tt.evm.ActivePrecompiles() | ||
require.ElementsMatchf(t, tt.want, got, "want: %v, got: %v", tt.want, got) | ||
}) | ||
} | ||
} |