Skip to content

Commit fe159ea

Browse files
FIX: javadoc on UInt256
Signed-off-by: Thomas Zamojski <thomas.zamojski@quadratic-labs.com>
1 parent 2c9e718 commit fe159ea

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

evm/src/main/java/org/hyperledger/besu/evm/UInt256.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,11 @@ int[] limbs() {
8585
// Unchecked length: assumes length is properly set.
8686
}
8787

88+
/**
89+
* Instantiates a new UInt256 from limbs (int[]).
90+
*
91+
* @param limbs integer limbs in little-endian order.
92+
*/
8893
public UInt256(final int[] limbs) {
8994
int i = Math.min(limbs.length, N_LIMBS) - 1;
9095
while ((i >= 0) && (limbs[i] == 0)) i--;

0 commit comments

Comments
 (0)