Skip to content

Commit 95e5259

Browse files
committed
all: fix build after upstream merge
1 parent 5376615 commit 95e5259

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build/ci.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ func doKeeperArchive(cmdline []string) {
707707

708708
var (
709709
env = build.Env()
710-
vsn = version.Archive(env.Commit)
710+
vsn = version.Archive(env.Tag, env.Commit)
711711
keeper = "keeper-" + vsn + ".tar.gz"
712712
)
713713
maybeSkipArchive(env)

core/types/transaction_signing.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ func newModernSigner(chainID *big.Int, fork forks.Fork) Signer {
236236
s.txtypes.set(SetCodeTxType)
237237
}
238238
if fork >= forks.Prague1 {
239-
s.txtypes[PoLTxType] = struct{}{}
239+
s.txtypes.set(PoLTxType)
240240
}
241241
return s
242242
}

0 commit comments

Comments
 (0)