We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a260407 commit b2f803cCopy full SHA for b2f803c
bitcoin/core/__init__.py
@@ -28,12 +28,6 @@
28
MAX_BLOCK_SIZE = 1000000
29
MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50
30
31
-BIP0031_VERSION = 60000
32
-PROTO_VERSION = 60002
33
-MIN_PROTO_VERSION = 209
34
-
35
-CADDR_TIME_VERSION = 31402
36
37
def MoneyRange(nValue):
38
return 0 <= nValue <= MAX_MONEY
39
bitcoin/net.py
@@ -18,6 +18,8 @@
18
from .core import PROTO_VERSION, CADDR_TIME_VERSION
19
from .core.serialize import *
20
21
+PROTO_VERSION = 60002
22
+CADDR_TIME_VERSION = 31402
23
24
class CAddress(Serializable):
25
def __init__(self, protover=PROTO_VERSION):
0 commit comments