forked from mazaclub/hashmal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try to solve the imcompatable problem
from mazaclub#5
- Loading branch information
1 parent
dce3151
commit 88ac423
Showing
7 changed files
with
46 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,6 @@ | |
*.coinscript | ||
*.conf | ||
Hashmal*.egg-info | ||
# Built package | ||
build/ | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
hashmal_entry_points = { | ||
'hashmal.plugin': [ | ||
'Address Encoder = hashmal_lib.plugins.addr_encoder:make_plugin', | ||
'Block Analyzer = hashmal_lib.plugins.block_analyzer:make_plugin', | ||
'Blockchain = hashmal_lib.plugins.blockchain:make_plugin', | ||
'Chainparams = hashmal_lib.plugins.chainparams:make_plugin', | ||
'Item Types = hashmal_lib.plugins.item_types:make_plugin', | ||
'Log = hashmal_lib.plugins.log:make_plugin', | ||
'Script Generator = hashmal_lib.plugins.script_gen:make_plugin', | ||
'Stack Evaluator = hashmal_lib.plugins.stack:make_plugin', | ||
'Transaction Analyzer = hashmal_lib.plugins.tx_analyzer:make_plugin', | ||
'Transaction Builder = hashmal_lib.plugins.tx_builder:make_plugin', | ||
'Variables = hashmal_lib.plugins.variables:make_plugin', | ||
'Wallet RPC = hashmal_lib.plugins.wallet_rpc:make_plugin' | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
python-bitcoinlib | ||
pyparsing | ||
requests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters