We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c9e718 commit fe159eaCopy full SHA for fe159ea
evm/src/main/java/org/hyperledger/besu/evm/UInt256.java
@@ -85,6 +85,11 @@ int[] limbs() {
85
// Unchecked length: assumes length is properly set.
86
}
87
88
+ /**
89
+ * Instantiates a new UInt256 from limbs (int[]).
90
+ *
91
+ * @param limbs integer limbs in little-endian order.
92
+ */
93
public UInt256(final int[] limbs) {
94
int i = Math.min(limbs.length, N_LIMBS) - 1;
95
while ((i >= 0) && (limbs[i] == 0)) i--;
0 commit comments