File tree 8 files changed +9
-10
lines changed
ansible/roles/configure/defaults
8 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -20,5 +20,5 @@ WORKDIR /home/locust
20
20
RUN dcld config node ${DCLD_NODE}
21
21
RUN dcld config chain-id ${DCLD_CHAIN_ID}
22
22
RUN dcld config keyring-backend test
23
- RUN dcld config broadcast-mode block
23
+ RUN dcld config broadcast-mode sync
24
24
RUN dcld config output json
Original file line number Diff line number Diff line change @@ -28,6 +28,6 @@ client:
28
28
# <host>:<port> to Tendermint RPC interface for this chain
29
29
node : " tcp://localhost:26657"
30
30
# Transaction broadcasting mode (sync|async|block)
31
- broadcast-mode : block
31
+ broadcast-mode : sync
32
32
config : {}
33
33
app : {}
Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ function config_cli {
230
230
231
231
./dcld config chain-id " $_chain_id "
232
232
./dcld config output json
233
- ./dcld config broadcast-mode block
233
+ ./dcld config broadcast-mode sync
234
234
if [[ -n " $KEYRING_BACKEND " ]]; then
235
235
./dcld config keyring-backend " $KEYRING_BACKEND "
236
236
fi
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ $DCL_BINARY config chain-id "$CHAIN_ID"
53
53
$DCL_BINARY config output json
54
54
$DCL_BINARY config node " tcp://localhost:26657"
55
55
$DCL_BINARY config keyring-backend test
56
- $DCL_BINARY config broadcast-mode block
56
+ $DCL_BINARY config broadcast-mode sync
57
57
58
58
(echo " $KEYPASSWD " ; echo " $KEYPASSWD " ) | $DCL_BINARY keys add jack
59
59
(echo " $KEYPASSWD " ; echo " $KEYPASSWD " ) | $DCL_BINARY keys add alice
@@ -197,9 +197,9 @@ function init_light_client_proxy {
197
197
198
198
$DCL_BINARY config chain-id " $CHAIN_ID "
199
199
$DCL_BINARY config node " tcp://localhost:26657"
200
- $DCL_BINARY config broadcast-mode block
200
+ $DCL_BINARY config broadcast-mode sync
201
201
$DCL_BINARY config keyring-backend test
202
- $DCL_BINARY config broadcast-mode block
202
+ $DCL_BINARY config broadcast-mode sync
203
203
204
204
cp -R " $LOCALNET_DIR " /client/* " $DCL_DIR "
205
205
Original file line number Diff line number Diff line change @@ -192,7 +192,6 @@ wait_for_height() {
192
192
fi
193
193
194
194
while true ; do
195
- docker logs -n 100 node0
196
195
sleep " ${wait_interval} "
197
196
waited=$(( waited + wait_interval))
198
197
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ docker exec $container /bin/sh -c "
64
64
./dcld config output json &&
65
65
./dcld config node $node0conn &&
66
66
./dcld config keyring-backend test &&
67
- ./dcld config broadcast-mode block "
67
+ ./dcld config broadcast-mode sync "
68
68
69
69
test_divider
70
70
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ add_validator_node() {
117
117
./dcld config output json &&
118
118
./dcld config node $node0conn &&
119
119
./dcld config keyring-backend test &&
120
- ./dcld config broadcast-mode block "
120
+ ./dcld config broadcast-mode sync "
121
121
122
122
test_divider
123
123
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ add_validator_node() {
121
121
./dcld config output json &&
122
122
./dcld config node $node0conn &&
123
123
./dcld config keyring-backend test &&
124
- ./dcld config broadcast-mode block "
124
+ ./dcld config broadcast-mode sync "
125
125
126
126
test_divider
127
127
You can’t perform that action at this time.
0 commit comments