Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Non-breaking changes] Move statedb.Account struct to types.StateAccoun #7

Closed
wants to merge 26 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
e0776fb
Move database_util.go to rawdb package
trinhdn97 Jul 20, 2023
5ce901b
Move db keys to schema.go
trinhdn97 Jul 20, 2023
36373e7
Refine db keys
trinhdn97 Jul 20, 2023
6392afd
Rename
trinhdn97 Jul 20, 2023
cf62b98
Split into sub accessor files
trinhdn97 Jul 20, 2023
dbccf9c
Init VRC25Issuer in genesis using puppeth wizard
trinhdn97 Dec 8, 2023
13b2f53
Merge pull request #407 from trinhdn2/update/puppeth_for_testnet_2023
tungng98 Dec 10, 2023
5e0692e
Define testnet fork blocks and special SMC addresses
trinhdn97 Dec 11, 2023
e12f32a
Merge pull request #411 from trinhdn2/cleanup/testnet_hardcode
tungng98 Dec 11, 2023
0ab845f
Add hardfork checkpoints utility functions to params.ChainConfig
trinhdn97 Dec 12, 2023
ebd4c5d
Allow puppeth wizard to modify genesis hardfork checkpoints
trinhdn97 Dec 12, 2023
72adad0
Respect current hardfork checkpoints constants
trinhdn97 Dec 12, 2023
39d768f
remove IsTestnet unused side effects
tungng98 Dec 13, 2023
0ac0159
Merge pull request #413 from tungng98/cleanup/remove-old-testnet-config
tungng98 Dec 13, 2023
07fb994
Merge remote-tracking branch 'origin/master' into ft/unify_hardforks_…
trinhdn97 Dec 13, 2023
ccb6513
Merge pull request #412 from trinhdn2/ft/unify_hardforks_chain_config
tungng98 Dec 13, 2023
9496c20
Bump go version to 1.19
trinhdn97 Dec 18, 2023
53c13e6
Merge pull request #417 from trinhdn2/update/bump_go_version
tungng98 Dec 18, 2023
a52b854
Feat: update version of duktape
imterryyy Dec 19, 2023
3c08aac
Feat: update go 1.21
imterryyy Dec 19, 2023
a1ab61c
fix(ci.go): ignore buildvcs
imterryyy Dec 19, 2023
c03863c
fix(crypto/bn256/cloudflare): pull in upstream fix for Go 1.21 R18
imterryyy Dec 19, 2023
21a87cf
remove buildvcs flag
imterryyy Dec 19, 2023
27ee58e
Merge pull request #418 from terryyyz-coin98/master
tungng98 Dec 19, 2023
9bd8b5a
Merge pull request #419 from trinhdn2/refactor/rawdb
tungng98 Dec 20, 2023
b9f81d5
Move statedb.Account struct to types.StateAccount
trinhdn97 Dec 27, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Bump go version to 1.19
  • Loading branch information
trinhdn97 committed Dec 18, 2023
commit 9496c20e4b6e16c8234afc4b5ea96677e5620da4
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.12-alpine as builder
FROM golang:1.19-alpine as builder

RUN apk add --no-cache make gcc musl-dev linux-headers git

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.bootnode
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.11-alpine as builder
FROM golang:1.19-alpine as builder

RUN apk add --no-cache make gcc musl-dev linux-headers

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.node
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.12-alpine as builder
FROM golang:1.19-alpine as builder

RUN apk add --no-cache make gcc musl-dev linux-headers git

Expand Down