Add --trust-node flag to cli to skip proofs on queries
This commit is contained in:
parent
f0e2227ada
commit
b98bfc01ae
|
@ -26,6 +26,7 @@ import (
|
|||
func GetAndParseAppProof(key []byte, data interface{}) (lc.Proof, error) {
|
||||
height := GetHeight()
|
||||
node := commands.GetNode()
|
||||
|
||||
prover := proofs.NewAppProver(node)
|
||||
|
||||
proof, err := GetProof(node, prover, key, height)
|
||||
|
@ -43,7 +44,12 @@ func GetProof(node client.Client, prover lc.Prover, key []byte, height int) (pro
|
|||
if err != nil {
|
||||
return
|
||||
}
|
||||
ph := int(proof.BlockHeight())
|
||||
|
||||
// short-circuit with no proofs
|
||||
if viper.GetBool(FlagTrustNode) {
|
||||
return proof, err
|
||||
}
|
||||
|
||||
// here is the certifier, root of all knowledge
|
||||
cert, err := commands.GetCertifier()
|
||||
if err != nil {
|
||||
|
@ -55,6 +61,7 @@ func GetProof(node client.Client, prover lc.Prover, key []byte, height int) (pro
|
|||
// FIXME: cannot use cert.GetByHeight for now, as it also requires
|
||||
// Validators and will fail on querying tendermint for non-current height.
|
||||
// When this is supported, we should use it instead...
|
||||
ph := int(proof.BlockHeight())
|
||||
client.WaitForHeight(node, ph, nil)
|
||||
commit, err := node.Commit(ph)
|
||||
if err != nil {
|
||||
|
@ -96,7 +103,7 @@ func ParseHexKey(args []string, argname string) ([]byte, error) {
|
|||
}
|
||||
|
||||
func GetHeight() int {
|
||||
return viper.GetInt(heightFlag)
|
||||
return viper.GetInt(FlagHeight)
|
||||
}
|
||||
|
||||
type proof struct {
|
||||
|
|
|
@ -2,8 +2,10 @@ package proofs
|
|||
|
||||
import "github.com/spf13/cobra"
|
||||
|
||||
// nolint
|
||||
const (
|
||||
heightFlag = "height"
|
||||
FlagHeight = "height"
|
||||
FlagTrustNode = "trust-node"
|
||||
)
|
||||
|
||||
// RootCmd represents the base command when called without any subcommands
|
||||
|
@ -19,5 +21,6 @@ data to other peers as needed.
|
|||
}
|
||||
|
||||
func init() {
|
||||
RootCmd.Flags().Int(heightFlag, 0, "Height to query (skip to use latest block)")
|
||||
RootCmd.Flags().Int(FlagHeight, 0, "Height to query (skip to use latest block)")
|
||||
RootCmd.Flags().Bool(FlagTrustNode, false, "DANGEROUS: blindly trust all results from the server")
|
||||
}
|
||||
|
|
|
@ -66,9 +66,22 @@ test02SendTxWithFee() {
|
|||
# Make sure tx is indexed
|
||||
checkSendFeeTx $HASH $TX_HEIGHT $SENDER "90" "10"
|
||||
|
||||
# make sure this works without trust also
|
||||
export BCTRUST_NODE=1
|
||||
checkSendFeeTx $HASH $TX_HEIGHT $SENDER "90" "10"
|
||||
unset BCTRUST_NODE
|
||||
|
||||
# assert replay protection
|
||||
TX=$(echo qwertyuiop | ${CLIENT_EXE} tx send --amount=90mycoin --fee=10mycoin --sequence=2 --to=$RECV --name=$RICH 2>/dev/null)
|
||||
assertFalse "line=${LINENO}, replay: $TX" $?
|
||||
|
||||
# make sure this works without trust also
|
||||
export BCTRUST_NODE=1
|
||||
checkAccount $SENDER "9007199254739900"
|
||||
checkAccount $RECV "1082"
|
||||
unset BCTRUST_NODE
|
||||
|
||||
# checking normally
|
||||
checkAccount $SENDER "9007199254739900"
|
||||
checkAccount $RECV "1082"
|
||||
|
||||
|
|
Loading…
Reference in New Issue