Skip to content

Commit b0f851c

Browse files
committed
Merge #281: fix: Sum value regression
4b83c05 fix: Sum value regression (Christian Lewe) Pull request description: Fixes #275 I tried the fix [that was recommended](BlockstreamResearch/simfony#114 (comment)) on the Simfony crate and it made all examples pass. ACKs for top commit: apoelstra: ACK 4b83c05; successfully ran local tests Tree-SHA512: aa6710bd7ab1333bc17cec8a57297ca5c455904dea5bab59c01ac3fe37f9109dbd2d231e567e7510513dc2c9a2935f12dbd93a4a9e2d2aa29964a7d4727a86fb
2 parents 33b043f + 4b83c05 commit b0f851c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/value.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -358,10 +358,10 @@ impl Value {
358358
let total_width = cmp::max(inner.ty.bit_width(), right.bit_width());
359359

360360
let (concat, concat_offset) = product(
361-
Some((&inner.inner, inner.bit_offset)),
362-
inner.ty.bit_width(),
363361
None,
364362
total_width - inner.ty.bit_width(),
363+
Some((&inner.inner, inner.bit_offset)),
364+
inner.ty.bit_width(),
365365
);
366366
let (new_inner, new_bit_offset) = right_shift_1(&concat, concat_offset, false);
367367
Self {

0 commit comments

Comments
 (0)