Skip to content

Commit

Permalink
Merge pull request #538 from pirapira/pprint
Browse files Browse the repository at this point in the history
pprint posted data to etherscan
  • Loading branch information
pirapira authored Feb 13, 2019
2 parents a0d9085 + cd5d665 commit 93fd06b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion raiden_contracts/deploy/etherscan_verify.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import json
import click
import pprint
import requests
import subprocess
from time import sleep
Expand Down Expand Up @@ -157,7 +158,7 @@ def post_data_for_etherscan_verification(
# Typo is intentional. Etherscan does not like the correct spelling.
'constructorArguements': constructor_args,
}
print({k: v for k, v in data.items() if k is not 'sourceCode'})
pprint.pprint({k: v for k, v in data.items() if k is not 'sourceCode'})
return data


Expand Down

0 comments on commit 93fd06b

Please sign in to comment.