File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,11 @@ don't have test cases for.
60
60
- When calling RPCs with lots of arguments, consider using named keyword
61
61
arguments instead of positional arguments to make the intent of the call
62
62
clear to readers.
63
+ - Many of the core test framework classes such as ` CBlock ` and ` CTransaction `
64
+ don't allow new attributes to be added to their objects at runtime like
65
+ typical Python objects allow. This helps prevent unpredictable side effects
66
+ from typographical errors or usage of the objects outside of their intended
67
+ purpose.
63
68
64
69
#### RPC and P2P definitions
65
70
@@ -72,7 +77,7 @@ P2P messages. These can be found in the following source files:
72
77
73
78
#### Using the P2P interface
74
79
75
- - ` mininode .py` contains all the definitions for objects that pass
80
+ - ` messages .py` contains all the definitions for objects that pass
76
81
over the network (` CBlock ` , ` CTransaction ` , etc, along with the network-level
77
82
wrappers for them, ` msg_block ` , ` msg_tx ` , etc).
78
83
You can’t perform that action at this time.
0 commit comments