lnd/revocation
Olaoluwa Osuntokun 06bad8ba42 revocation: fix integer underflow infinite loop bug in sha chain
* `i := toDerive - 1` created an unsigned integer, the last loop
iteration subtracted from zero causing this to underflow creating an
infinite loop
* Instead, initialized `i` as an int, and cast to uint as needed
2015-12-21 15:47:36 -06:00
..
revocation.go Create skeleton for revocation methods 2015-12-16 14:39:05 -06:00
shachain.go revocation: fix integer underflow infinite loop bug in sha chain 2015-12-21 15:47:36 -06:00
shachain_test.go Serialize Funding Request and script for CLTV-only 2015-12-18 11:29:35 -08:00