File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed
src/main/scala/org/graphsense/account Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -8,3 +8,4 @@ metals.sbt
8
8
.idea /*
9
9
graphsense-spark.jar
10
10
test_ref
11
+ .vscode /
Original file line number Diff line number Diff line change @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
3
3
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
5
5
6
+ ## [ 24.11.1] 2024-12-06
7
+ ### Fixed
8
+ - block difficulty and total difficulty can now be null
9
+
6
10
## [ 24.11.0] 2024-11-14
7
11
### Changed
8
12
- Upgrade to Spark 3.5.3
Original file line number Diff line number Diff line change 1
- RELEASE := 'v24.11.0 '
1
+ RELEASE := 'v24.11.1 '
2
2
# RELEASESEM := 'v1.6.2'
3
3
4
4
all : format lint build
5
-
5
+
6
6
# -v graphsense-spark-temp-volume:/tmp/spark:z
7
7
RUNTRANSFORM =sh -c '\
8
8
docker run --rm \
Original file line number Diff line number Diff line change @@ -134,8 +134,8 @@ case class Block(
134
134
stateRoot : Array [Byte ],
135
135
receiptsRoot : Array [Byte ],
136
136
miner : Array [Byte ],
137
- difficulty : BigInt ,
138
- totalDifficulty : BigInt ,
137
+ difficulty : Option [ BigInt ] ,
138
+ totalDifficulty : Option [ BigInt ] ,
139
139
size : Int ,
140
140
extraData : Array [Byte ],
141
141
gasLimit : Int ,
You can’t perform that action at this time.
0 commit comments