Questions tagged [tendermint]
75 questions
0
votes
1 answer
trying to install tendermint for cluster of nodes
I am trying to install tendermint using the guide link:[https://tendermint.com/docs/introduction/quick-start.html#cluster-of-nodes]
I am doing this in 4 different virtual machines installed on virtualbox
all machines are pingable and have different…

njain
- 33
- 1
- 7
0
votes
0 answers
No addresses to dial nor connected peers while setting up tendermint(only single node)
I[09-09|17:39:49.600] Starting socketClient module=abci-client connection=mempool impl=socketClient
I[09-09|17:39:49.708] Starting socketClient module=abci-client connection=consensus…

njain
- 33
- 1
- 7
0
votes
1 answer
error while setting up tendermint and bigchaindb
Screenshot of the errorgot this error
Dialed 96484a110e6f599e6ce6baf576200dd62413fc9b@127.0.1.1:26656, but got peer with ID 8fa7169bb839b43a755196db851a14a1c5968462" addr=96484a110e6f599e6ce6baf576200dd62413fc9b@127.0.1.1:26656
dont understand what…

njain
- 33
- 1
- 7
0
votes
0 answers
Broadcast and Gossip in Tendermint Peer-to-Peer
I'm reading over the Tendermint source code and I'm trying to make sense of the peer-to-peer architecture. Broadcasting across a Switch seems to call Receive() on every single Peer, even ones that don't have voting power. I imagine there are…

David
- 170
- 2
- 9
0
votes
1 answer
Tendermint: why GasWanted, GasUsed and Fee appear in in DeliverTx/CheckTx response?
The ABCI specs declare that results of DeliverTx and CheckTx contain the following information:
...
GasWanted (int64): Amount of gas requested for transaction.
GasUsed (int64): Amount of gas consumed by transaction.
...
Fee (cmn.KI64Pair): Fee paid…

Max Levy
- 384
- 4
- 12
0
votes
1 answer
Tendermint Networks,if some nodes are offline,is there any way to get the lost data for this nodes?
Tendermint Networks,if some nodes are offline,is there any way to get the lost data for this nodes?

Russell Zhang
- 31
- 3
0
votes
1 answer
Why when I broadcast_tx_commit (using abci-cli) the output also have the fee field?
curl -s 'localhost:46657/broadcast_tx_commit?tx="name=satoshi"'
result contains the fee field: "fee": {}
Why return the parameter fee? It is different from the official documentation.

Russell Zhang
- 31
- 3
0
votes
1 answer
Transaction decoding result garbled
I queried a transaction result using:
curl http://localhost:3000/tendermint/tx?hash=0xCDD76608F774BD29CDED2EBD30E94FB66CEF73A9
and then fetch the transaction content 'tx' in the returned JSON object.
// tx was extracted from the above returned JSON…

shapeare
- 4,133
- 7
- 28
- 39
0
votes
1 answer
Docker: tendermint container not work
My OS is Windows 10 and docker version 17.12.0-ce, build c97c6d6.
Here is my plan:
0. Get containers
docker pull tendermint/tendermint
docker pull tendermint/monitor
1. Init container
docker run --rm -p 46657:46657 --name tendermint_bc -v…

david
- 83
- 1
- 13
0
votes
3 answers
Can anyone describe the differences in Tendermint and Hashgraph?
Can anyone describe the differences in Tendermint and Hashgraph?
We are looking to use a BFT consensus solution with mongoDb like in BigchainDb but we are wondering the differences with Tendermint and Hashgraph?
thank you
0
votes
2 answers
ethermint: command not found, When attempting ethermint installation?
I'm following the steps to install ethermint on top of tendermint that are listed on the README on this github page: https://github.com/tendermint/ethermint, but at the step ethermint --datadir ~/.ethermint init setup/genesis.json, then I get the…

qazwsxedcrfvtgbyhn
- 357
- 1
- 2
- 8
-1
votes
1 answer
Tendermint to run on Android phone
Is it possible to use gomobile to compile Tendermint and ABCI, then we can run them on Android phones?
I am looking for the tutorial how to implement this.

Pakorn K
- 111
- 1
- 11
-1
votes
1 answer
How to communicate properly with the Tendermint ABCI?
I have faced a lot of difficulty properly connecting to the Tendermint server as spawned by the abci Node.JS package.
I have tried following the documentation over at the official site, however I awlays get the error Error: invalid wire type 4 at…

Alex Papageorgiou
- 282
- 2
- 14
-1
votes
1 answer
install go-ethereum dependencies and tendermint dependencies with glide
I'm using "glide" to manage my go packages, here is my glide.yaml:
package: github.com/my-project
import:
- package: github.com/ethereum/go-ethereum
version: 1.8.14
subpackages:
- cmd/utils
- common
- common/hexutil
- consensus/ethash
…

SinTan1071
- 53
- 9
-1
votes
1 answer