Browse Source

[mintnet-kubernetes] use `tr -d` as per Frey suggestion

pull/1943/head
Anton Kaliaev 7 years ago
parent
commit
4c4bce9469
No known key found for this signature in database GPG Key ID: 7B6881D965918214
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      mintnet-kubernetes/examples/basecoin/README.md

+ 2
- 2
mintnet-kubernetes/examples/basecoin/README.md View File

@ -25,13 +25,13 @@ make create
3. get account's address of the second pod
```
kubectl exec -c app tm-1 -- cat /app/key.json | grep "address"
ADDR=`kubectl exec -c app tm-1 -- cat /app/key.json | grep "address" | tr -d "\""`
```
4. send 5 coins to it from the first pod
```
kubectl exec -c app tm-0 -- basecoin tx send --to 0x<address> --amount 5
kubectl exec -c app tm-0 -- basecoin tx send --to "0x$ADDR" --amount 5
```


Loading…
Cancel
Save