set max tx fee as a constant

This commit is contained in:
Jude Nelson
2017-04-27 19:29:49 -04:00
parent 29e7e7c6ea
commit a2c06ae6d9

View File

@@ -25,7 +25,6 @@ from __future__ import print_function
"""
import os
import sys
import json
import tempfile
import subprocess
@@ -347,6 +346,8 @@ APPROX_TX_OUT_P2PKH_LEN = 40
APPROX_TX_IN_P2SH_LEN = 300
APPROX_TX_OUT_P2SH_LEN = 40
TX_MAX_FEE = int(5 * 1e5)
# hardened children indexes
ACCOUNT_SIGNING_KEY_INDEX = 0
DATASTORE_SIGNING_KEY_INDEX = 0