Closed jeffro256 closed 3 years ago
If you called daemon.block(height=0) then the expression:
if not height and not bhash:
Is True because 0 is falsey. I changed that line to a slightly more wordy, but more accurate:
True
if height is None and bhash is None:
If you called daemon.block(height=0) then the expression:
Is
True
because 0 is falsey. I changed that line to a slightly more wordy, but more accurate: