Commit 97190360 by github-actions

Transpile 92fbf5bb

parent 503fb21a
...@@ -14,7 +14,6 @@ abstract contract GovernorProposalThresholdUpgradeable is Initializable, Governo ...@@ -14,7 +14,6 @@ abstract contract GovernorProposalThresholdUpgradeable is Initializable, Governo
function __GovernorProposalThreshold_init() internal initializer { function __GovernorProposalThreshold_init() internal initializer {
__Context_init_unchained(); __Context_init_unchained();
__ERC165_init_unchained(); __ERC165_init_unchained();
__EIP712_init_unchained(name_, version());
__IGovernor_init_unchained(); __IGovernor_init_unchained();
__GovernorProposalThreshold_init_unchained(); __GovernorProposalThreshold_init_unchained();
} }
......
...@@ -8,8 +8,7 @@ if [[ "$REF" != refs/heads/* ]]; then ...@@ -8,8 +8,7 @@ if [[ "$REF" != refs/heads/* ]]; then
echo "$REF is not a branch" >&2 echo "$REF is not a branch" >&2
exit 1 exit 1
elif [[ "$REF" == refs/heads/patches ]]; then elif [[ "$REF" == refs/heads/patches ]]; then
echo "Run on a different branch" >&2 REF=refs/heads/master
exit 1
fi fi
set -x set -x
......
...@@ -82,3 +82,15 @@ index cdfd0ae7..48408d9c 100644 ...@@ -82,3 +82,15 @@ index cdfd0ae7..48408d9c 100644
__IGovernor_init_unchained(); __IGovernor_init_unchained();
__GovernorVotes_init_unchained(tokenAddress); __GovernorVotes_init_unchained(tokenAddress);
} }
diff --git a/contracts/governance/extensions/GovernorProposalThresholdUpgradeable.sol b/contracts/governance/extensions/GovernorProposalThresholdUpgradeable.sol
index c66ebc16..3bba9501 100644
--- a/contracts/governance/extensions/GovernorProposalThresholdUpgradeable.sol
+++ b/contracts/governance/extensions/GovernorProposalThresholdUpgradeable.sol
@@ -14,7 +14,6 @@ abstract contract GovernorProposalThresholdUpgradeable is Initializable, Governo
function __GovernorProposalThreshold_init() internal initializer {
__Context_init_unchained();
__ERC165_init_unchained();
- __EIP712_init_unchained(name_, version());
__IGovernor_init_unchained();
__GovernorProposalThreshold_init_unchained();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment