Revision 4113075a05ef74654d8c692e947310a95c19b7d0 authored by Julien Tesson on 23 July 2019, 17:10:04 UTC, committed by Romain Bardou on 29 August 2019, 07:29:02 UTC
Beside all the machinery added to interact internally with the
entrypoints list and types, this commit does the following in the
client commands

Changing  tezos-client get script storage for <contract>
to        tezos-client get contract storage for <contract>

Changing  tezos-client get script code for <contract>
to        tezos-client get contract code for <contract>

adding
        tezos-client get contract unreachable paths for <contract>
        tezos-client get script   unreachable paths for <contract>

        tezos-client get contract type of entrypoint <entrypoint> for <contract>
        tezos-client get script   type of entrypoint <entrypoint> for <contract>

        tezos-client get contract entrypoints for <contract>
        tezos-client get script   entrypoints for <contract>

Tests/Bash: Reflect change of command name in bash tests
1 parent 2a7545e
Raw File
dune
(env
 (dev
  (flags (:standard)))
 (release
  (flags (:standard -O3))))

(alias
 (name runtest)
 (deps (alias_rec runtest_lint)))

(alias
 (name runtest)
 (deps (alias_rec runtest_sandbox)))
back to top