This repository has been archived by the owner on May 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #608 from JoinMarket-Org/0.2.0
merge 0.2.0 into develop
- Loading branch information
Showing
62 changed files
with
3,850 additions
and
4,864 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 |
---|---|---|
|
@@ -6,3 +6,6 @@ blockchain.cache | |
env | ||
htmlcov/ | ||
joinmarket.cfg | ||
cmttools/commitments.json | ||
blacklist | ||
|
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 |
---|---|---|
@@ -1,14 +1,8 @@ | ||
from bitcoin.py2specials import * | ||
from bitcoin.py3specials import * | ||
secp_present = False | ||
try: | ||
import secp256k1 | ||
secp_present = True | ||
from bitcoin.secp256k1_main import * | ||
from bitcoin.secp256k1_transaction import * | ||
from bitcoin.secp256k1_deterministic import * | ||
except ImportError as e: | ||
from bitcoin.main import * | ||
from bitcoin.deterministic import * | ||
from bitcoin.transaction import * | ||
import secp256k1 | ||
from bitcoin.secp256k1_main import * | ||
from bitcoin.secp256k1_transaction import * | ||
from bitcoin.secp256k1_deterministic import * | ||
from bitcoin.bci import * | ||
from bitcoin.podle import * |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.