chainntnfs/txnotiifer: define MaxNumConfs supported as ReorgSafetyLimit

This commit is contained in:
Wilmer Paulino 2018-12-04 16:59:20 -08:00
parent fd2bfaa007
commit 5be8f08b16
No known key found for this signature in database
GPG Key ID: 6DF57B9F9514972F

@ -17,6 +17,10 @@ const (
// handled correctly. The average number of blocks in a day is a // handled correctly. The average number of blocks in a day is a
// reasonable value to use. // reasonable value to use.
ReorgSafetyLimit = 144 ReorgSafetyLimit = 144
// MaxNumConfs is the maximum number of confirmations that can be
// requested on a transaction.
MaxNumConfs = ReorgSafetyLimit
) )
var ( var (