Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
executable file
·
34 lines (27 loc) · 983 Bytes

File metadata and controls

executable file
·
34 lines (27 loc) · 983 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python3
# Copyright (C) 2014 The python-bitcoinlib developers
#
# This file is part of python-bitcoinlib.
#
# It is subject to the license terms in the LICENSE file found in the top-level
# directory of this distribution.
#
# No part of python-bitcoinlib, including this file, may be copied, modified,
# propagated, or distributed except according to the terms contained in the
# LICENSE file.
"""Serialize some bitcoin datastructures and show them in serialized and repr form."""
import sys
if sys.version_info.major < 3:
sys.stderr.write('Sorry, Python 3.x required by this example.\n')
sys.exit(1)
from bitcoin import SelectParams
from bitcoin.messages import msg_version, msg_tx, msg_block
SelectParams('mainnet')
for c in [msg_version, msg_tx, msg_block]:
# Instanciate the message with some default values
msg = c()
name = c.__name__
print(name + " repr:")
print(msg)
print(name + " serialized:")
print(msg.to_bytes())
Morty Proxy This is a proxified and sanitized view of the page, visit original site.