Remove dead code
This commit is contained in:
parent
6105703ca5
commit
a9880c05a0
@ -53,7 +53,7 @@ RUN apt-get update && \
|
||||
|
||||
RUN echo installing nodejs tooling
|
||||
|
||||
COPY contract-migration/dev/nvm.sh /root/
|
||||
COPY contract-migration/nvm.sh /root/
|
||||
|
||||
# Install nvm with node and npm
|
||||
# https://stackoverflow.com/questions/25899912/how-to-install-nvm-in-docker
|
||||
|
4
apps/contract-migration/nvm.sh
Normal file
4
apps/contract-migration/nvm.sh
Normal file
@ -0,0 +1,4 @@
|
||||
export NVM_DIR="$HOME/.nvm"
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && source "$NVM_DIR/nvm.sh"
|
||||
[ -s "$NVM_DIR/bash_completion" ] && source "$NVM_DIR/bash_completion"
|
||||
|
@ -100,7 +100,6 @@ def register_eth(u):
|
||||
|
||||
|
||||
def register_ussd(u):
|
||||
#logg.warning('missing ussd register')
|
||||
pass
|
||||
|
||||
|
||||
@ -129,13 +128,6 @@ if __name__ == '__main__':
|
||||
|
||||
register_ussd(u)
|
||||
|
||||
# part = []
|
||||
# for j in range(3):
|
||||
# (head, tail) = os.path.split(filepath)
|
||||
# part.append(tail)
|
||||
# filepath = head
|
||||
# part.reverse()
|
||||
# filepath = os.path.join(user_out_dir, '/'.join(part))
|
||||
new_address_clean = strip_0x(new_address)
|
||||
filepath = os.path.join(
|
||||
user_out_dir,
|
||||
|
@ -3,7 +3,7 @@ cic-types==0.1.0a2
|
||||
chainlib==0.0.1a7
|
||||
chainsyncer==0.0.1a5
|
||||
cic-eth==0.10.0a26
|
||||
confini==0.3.6b1
|
||||
confini==0.3.6b2
|
||||
celery==4.4.7
|
||||
redis==3.5.3
|
||||
hexathon==0.0.1a2
|
||||
|
@ -21,7 +21,8 @@ debug='-vv'
|
||||
abi_dir=${ETH_ABI_DIR:-/usr/local/share/cic/solidity/abi}
|
||||
gas_amount=100000000000000000000000
|
||||
token_amount=${gas_amount}
|
||||
faucet_amount=1000000000
|
||||
#faucet_amount=1000000000
|
||||
faucet_amount=0
|
||||
env_out_file=${CIC_DATA_DIR}/.env_seed
|
||||
init_level_file=${CIC_DATA_DIR}/.init
|
||||
truncate $env_out_file -s 0
|
||||
|
Loading…
Reference in New Issue
Block a user