mirror of https://github.com/bitcoin/bitcoin
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.
13 lines
447 B
13 lines
447 B
1 year ago
|
# ASMap Tool
|
||
|
|
||
|
Tool for performing various operations on textual and binary asmap files,
|
||
|
particularly encoding/compressing the raw data to the binary format that can
|
||
|
be used in Bitcoin Core with the `-asmap` option.
|
||
|
|
||
|
Example usage:
|
||
|
```
|
||
|
python3 asmap-tool.py encode /path/to/input.file /path/to/output.file
|
||
|
python3 asmap-tool.py decode /path/to/input.file /path/to/output.file
|
||
|
python3 asmap-tool.py diff /path/to/first.file /path/to/second.file
|
||
|
```
|