richardblythman commited on
Commit
1dd27af
·
1 Parent(s): b8f294c

hex to string

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ ocean = Ocean(config)
13
  def wallet(hello):
14
  account, mnemonic = get_wallet()
15
 
16
- private_key = account.key
17
  address = account.address
18
 
19
  # wallet = Wallet(ocean.web3, private_key, transaction_timeout=20, block_confirmations=config.block_confirmations)
 
13
  def wallet(hello):
14
  account, mnemonic = get_wallet()
15
 
16
+ private_key = account.key.hex()
17
  address = account.address
18
 
19
  # wallet = Wallet(ocean.web3, private_key, transaction_timeout=20, block_confirmations=config.block_confirmations)