Skip to content

Commit 8dd490a

Browse files
Merge remote-tracking branch 'ethpandaops/master'
2 parents 64c67ee + ecc8b56 commit 8dd490a

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/_shared-build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ jobs:
243243

244244
# download build artifacts
245245
- name: Download build artifacts
246-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
246+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
247247
with:
248248
name: assertoor_linux_amd64
249249
path: ./bin
@@ -292,7 +292,7 @@ jobs:
292292

293293
# download build artifacts
294294
- name: Download build artifacts
295-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
295+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
296296
with:
297297
name: assertoor_linux_arm64
298298
path: ./bin

.github/workflows/build-master.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ jobs:
8080
needs: [build_binaries]
8181
runs-on: ubuntu-latest
8282
steps:
83-
# download build artifacts
84-
- name: "Download build artifacts"
85-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
83+
# download build artifacts
84+
- name: "Download build artifacts"
85+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
8686

8787
# (re)create snapshot binary release
8888
- name: Update snapshot tag & remove previous snapshot release

.github/workflows/build-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ jobs:
4949
echo " - ${changelog//$'\n'/$'\n' - }" >> $GITHUB_OUTPUT
5050
echo "EOF" >> $GITHUB_OUTPUT
5151
52-
# download build artifacts
53-
- name: "Download build artifacts"
54-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
52+
# download build artifacts
53+
- name: "Download build artifacts"
54+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
5555

5656
# create draft release
5757
- name: Create latest release

pkg/coordinator/tasks/generate_transaction/task.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ func (t *Task) generateTransaction(ctx context.Context) (*ethtypes.Transaction,
379379
if authorization.Nonce != nil {
380380
authEntry.Nonce = *authorization.Nonce
381381
} else {
382-
authEntry.Nonce = authWallet.UseNextNonce(!bytes.Equal(authEntry.Address.Bytes(), t.wallet.GetAddress().Bytes()))
382+
authEntry.Nonce = authWallet.UseNextNonce(true)
383383
}
384384

385385
authEntry, err := ethtypes.SignSetCode(authWallet.GetPrivateKey(), authEntry)

0 commit comments

Comments
 (0)