File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -73,6 +73,21 @@ This property is generally of little interest to developers.
73
73
_property: block.difficulty => number
74
74
The difficulty target required to be met by the miner of the block.
75
75
76
+ Recently the difficulty frequently exceeds the size that a JavaScript
77
+ number can safely store (53-bits), so in that case this property may
78
+ be null. It is recommended to use the `_difficulty` property below,
79
+ which will always return a value, but as a [[BigNumber]].
80
+
81
+ This property is generally of little interest to developers.
82
+
83
+ _property: block._difficulty => [[BigNumnber]]
84
+ The difficulty target required to be met by the miner of the block,
85
+ as a [[BigNumber]].
86
+
87
+ Recently the difficulty frequently exceeds the size that a JavaScript
88
+ number can safely store (53-bits), so this property was added to
89
+ safely encode the value for applications that require it.
90
+
76
91
This property is generally of little interest to developers.
77
92
78
93
_property: block.gasLimit => [[BigNumber]]
You can’t perform that action at this time.
0 commit comments