Skip to content
This repository has been archived by the owner on Nov 15, 2021. It is now read-only.

Commit

Permalink
Merge 0161f4f into 75881fa
Browse files Browse the repository at this point in the history
  • Loading branch information
localhuman committed Aug 13, 2018
2 parents 75881fa + 0161f4f commit c8ad1fc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion neo/Prompt/Commands/Invoke.py
Expand Up @@ -577,7 +577,7 @@ def gather_signatures(context, itx, owners):
do_exit = False
print("owners %s " % owners)
print("\n\n*******************\n")
print("Gather Signatures for Transactino:\n%s " % json.dumps(itx.ToJson(), indent=4))
print("Gather Signatures for Transaction:\n%s " % json.dumps(itx.ToJson(), indent=4))
print("Please use a client to sign the following: %s " % itx.GetHashData())

owner_index = 0
Expand Down
2 changes: 1 addition & 1 deletion neo/Prompt/Commands/Send.py
Expand Up @@ -93,7 +93,7 @@ def construct_and_send(prompter, wallet, arguments, prompt_password=True):
else:
signer_contract = wallet.GetContract(standard_contract)

if not signer_contract.IsMultiSigContract:
if not signer_contract.IsMultiSigContract and owners is None:

data = standard_contract.Data
tx.Attributes = [TransactionAttribute(usage=TransactionAttributeUsage.Script,
Expand Down
2 changes: 1 addition & 1 deletion neo/bin/prompt.py
Expand Up @@ -142,7 +142,7 @@ class PromptInterface:
'wallet tkn_register {addr} ({addr}...) (--from-addr={addr})',
'wallet tkn_history {token symbol}',
'wallet unspent (neo/gas)',
'wallet split {addr} {asset} {unspent index} {divide into number of vins}'
'wallet split {addr} {asset} {unspent index} {divide into number of vins}',
'wallet close',
'withdraw_request {asset_name} {contract_hash} {to_addr} {amount}',
'withdraw holds # lists all current holds',
Expand Down

0 comments on commit c8ad1fc

Please sign in to comment.