diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5a55e85da..486f08ea6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -103,7 +103,11 @@ jobs: echo "TUID=$UID" >> $GITHUB_ENV - name: Checkout sources - uses: actions/checkout@master + uses: actions/checkout@v2 + with: + token: ${{ secrets.GH_TOKEN }} + submodules: recursive + - name: Install rust stable toolchain uses: actions-rs/toolchain@v1 diff --git a/evm/script/DeployGateway.s.sol b/evm/script/DeployGateway.s.sol index 17dda1560..6a7e29904 100644 --- a/evm/script/DeployGateway.s.sol +++ b/evm/script/DeployGateway.s.sol @@ -53,6 +53,5 @@ contract DeployScript is Script { TokenFaucet faucet = new TokenFaucet{salt: salt}(address(t)); t.grantRole(MINTER_ROLE, address(faucet)); - t.grantRole(BURNER_ROLE, address(faucet)); } }