You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
306 B
9 lines
306 B
package wire |
|
|
|
// MsgBlock implements the Message interface and represents a bitcoin |
|
// block message. It is used to deliver block and transaction information in |
|
// response to a getdata message (MsgGetData) for a given block hash. |
|
type MsgBlock struct { |
|
Header BlockHeader |
|
Transactions []*MsgTx |
|
}
|
|
|