Skip to content

Commit

Permalink
submodules: bump external/cli from 098968e to 70d9313
Browse files Browse the repository at this point in the history
Bumps [external/cli](https://github.com/oasisprotocol/cli) from `098968e` to `70d9313`.
- [Release notes](https://github.com/oasisprotocol/cli/releases)
- [Commits](oasisprotocol/cli@098968e...70d9313)

---
updated-dependencies:
- dependency-name: external/cli
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Oct 20, 2023
1 parent e63744d commit 120b1bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external/cli
Submodule cli updated 75 files
+4 −3 .github/workflows/ci-lint.yml
+2 −2 .github/workflows/ci-tests.yml
+3 −3 .github/workflows/release.yml
+3 −1 cmd/account/account.go
+66 −6 cmd/account/delegate.go
+104 −0 cmd/account/show/allowances.go
+336 −0 cmd/account/show/delegations.go
+50 −16 cmd/account/show/show.go
+63 −11 cmd/account/undelegate.go
+1 −0 cmd/network/network.go
+30 −0 cmd/network/set_chain_context.go
+24 −0 cmd/paratime/show.go
+20 −74 cmd/paratime/statistics.go
+2 −1 cmd/root.go
+0 −399 cmd/wallet.go
+73 −0 cmd/wallet/create.go
+27 −0 cmd/wallet/export.go
+80 −0 cmd/wallet/import.go
+88 −0 cmd/wallet/import_file.go
+43 −0 cmd/wallet/list.go
+70 −0 cmd/wallet/remote_signer.go
+47 −0 cmd/wallet/remove.go
+29 −0 cmd/wallet/rename.go
+23 −0 cmd/wallet/set_default.go
+35 −0 cmd/wallet/show.go
+59 −0 cmd/wallet/wallet.go
+32 −2 config/config.go
+9 −0 config/default.go
+18 −1 docs/account.md
+57 −0 docs/network.md
+35 −3 docs/wallet.md
+1 −1 examples/account/amend-commission-schedule.y.in
+4 −4 examples/account/amend-commission-schedule.y.out
+1 −0 examples/account/delegate-paratime.y.in
+17 −0 examples/account/delegate-paratime.y.out
+1 −1 examples/account/deposit-eth.y.out
+1 −1 examples/account/deposit-named.y.out
+1 −1 examples/account/deposit-oasis.y.out
+1 −1 examples/account/deposit.y.out
+7 −4 examples/account/show-eth.out
+2 −2 examples/account/show-mainnet.out
+2 −2 examples/account/show-named.out
+2 −2 examples/account/show-no-paratime.out
+2 −2 examples/account/show-oasis.out
+2 −2 examples/account/show-testnet.out
+2 −2 examples/account/show.out
+1 −0 examples/account/undelegate-paratime.y.in
+17 −0 examples/account/undelegate-paratime.y.out
+2 −2 examples/account/withdraw-named.y.out
+2 −2 examples/account/withdraw-oasis.y.out
+2 −2 examples/account/withdraw.y.out
+1 −0 examples/network-governance/list.out
+1 −1 examples/network-set-rpc/00-list.out
+1 −1 examples/network-set-rpc/02-list.out
+1 −1 examples/network/00-list.out
+1 −1 examples/network/02-list.out
+1 −1 examples/network/04-list.out
+1 −0 examples/network/05-set-chain-context.in
+0 −0 examples/network/05-set-chain-context.out
+1 −1 examples/network/add-tcpip.in.static
+1 −1 examples/network/add-unix.in.static
+2 −2 examples/transaction/show-invalid.out
+2 −2 examples/transaction/show-paratime-tx.out
+2 −2 examples/transaction/show.out
+1 −1 examples/transaction/sign.y.out
+2 −2 examples/transaction/testtx.json
+2 −2 examples/transaction/testtx2.json
+56 −35 go.mod
+244 −935 go.sum
+16 −4 wallet/file/file.go
+119 −0 wallet/file/sr25519.go
+35 −0 wallet/file/sr25519_test.go
+34 −19 wallet/ledger/device.go
+2 −2 wallet/ledger/ledger.go
+1 −2 wallet/ledger/signer.go

0 comments on commit 120b1bb

Please sign in to comment.