mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-04-09 08:41:15 +08:00
Merge branch 'hotfix/disable-segwit'
This commit is contained in:
@@ -215,12 +215,16 @@ def make_wallet(password, payment_privkey_info=None, owner_privkey_info=None, da
|
||||
if segwit is None:
|
||||
# no preference given.
|
||||
# safe to use by default post-F-day 2017 (Dec 1 2017)
|
||||
'''
|
||||
if time.time() >= 1512086400:
|
||||
segwit = True
|
||||
|
||||
else:
|
||||
# defer to virtualchain
|
||||
segwit = virtualchain.get_features('segwit')
|
||||
'''
|
||||
# disable for now
|
||||
segwit = False
|
||||
|
||||
# default to 2-of-3 multisig key info if data isn't given
|
||||
if segwit:
|
||||
|
||||
Reference in New Issue
Block a user