NFT0: Make the wallet ID required for transferring an NFT.

This commit is contained in:
Amine Khaldi
2022-05-11 18:26:29 +01:00
parent 5d848141c6
commit cf1e5a789d
+2
View File
@@ -549,11 +549,13 @@ def nft_add_uri_cmd(
default=None,
)
@click.option("-f", "--fingerprint", help="Set the fingerprint to specify which wallet to use", type=int)
@click.option("-i", "--id", help="Id of the NFT wallet to use", type=int, required=True)
@click.option("-ni", "--nft-coin-id", help="Id of the NFT coin to transfer", type=str, required=True)
@click.option("-aa", "--artist-address", help="Target artist's wallet address", type=str, required=True)
def nft_transfer_cmd(
wallet_rpc_port: Optional[int],
fingerprint: int,
id: int,
nft_coin_id: str,
artist_address: str,
) -> None: