From 48e3a411334dccd56db21771378250c103a4601d Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Wed, 27 Jan 2021 21:45:44 +0300 Subject: [PATCH] cli: remove outdated `contract deploy` comment It's relevant for Neo 2.0, but not 3.0. --- cli/smartcontract/smart_contract.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/cli/smartcontract/smart_contract.go b/cli/smartcontract/smart_contract.go index b01f5a31c..2145df0da 100644 --- a/cli/smartcontract/smart_contract.go +++ b/cli/smartcontract/smart_contract.go @@ -170,10 +170,7 @@ func NewCommands() []cli.Command { Name: "deploy", Usage: "deploy a smart contract (.nef with description)", Description: `Deploys given contract into the chain. The gas parameter is for additional - gas to be added as a network fee to prioritize the transaction. It may also - be required to add that to satisfy chain's policy regarding transaction size - and the minimum size fee (so if transaction send fails, try adding 0.001 GAS - to it). + gas to be added as a network fee to prioritize the transaction. `, Action: contractDeploy, Flags: deployFlags,