Skip to content

Commit

Permalink
fix multiplier
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianElvis committed Oct 2, 2024
1 parent 333b02c commit e014f67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/configurer/chain/commands_btcstaking.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ func (n *NodeConfig) AddFinalitySig(fpBTCPK *bbn.BIP340PubKey, blockHeight uint6
appHashHex := hex.EncodeToString(appHash)
finalitySigHex := finalitySig.ToHexStr()

cmd := []string{"babylond", "tx", "finality", "add-finality-sig", fpBTCPKHex, blockHeightStr, pubRandHex, proofHex, appHashHex, finalitySigHex, "--from=val", "--gas=auto", "--gas-adjustment=1.3"}
cmd := []string{"babylond", "tx", "finality", "add-finality-sig", fpBTCPKHex, blockHeightStr, pubRandHex, proofHex, appHashHex, finalitySigHex, "--from=val", "--gas=auto", "--gas-adjustment=2"}
_, _, err = n.containerManager.ExecTxCmd(n.t, n.chainId, n.Name, cmd)
require.NoError(n.t, err)
n.LogActionF("successfully added finality signature")
Expand Down

0 comments on commit e014f67

Please sign in to comment.