rm @profiler from Transaction.estimated_size
in certain situations, estimated_size is called hundreds of times, flooding the log
This commit is contained in:
@@ -1087,7 +1087,6 @@ class Transaction:
|
|||||||
def is_final(self):
|
def is_final(self):
|
||||||
return not any([x.get('sequence', 0xffffffff - 1) < 0xffffffff - 1 for x in self.inputs()])
|
return not any([x.get('sequence', 0xffffffff - 1) < 0xffffffff - 1 for x in self.inputs()])
|
||||||
|
|
||||||
@profiler
|
|
||||||
def estimated_size(self):
|
def estimated_size(self):
|
||||||
"""Return an estimated virtual tx size in vbytes.
|
"""Return an estimated virtual tx size in vbytes.
|
||||||
BIP-0141 defines 'Virtual transaction size' to be weight/4 rounded up.
|
BIP-0141 defines 'Virtual transaction size' to be weight/4 rounded up.
|
||||||
|
|||||||
Reference in New Issue
Block a user