Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ B2_RPC_ENDPOINT="https://mainnet.b2-rpc.com"
B2_RPC_PUBLIC_ENDPOINTS="https://rpc.bsquared.network,https://mainnet.b2-rpc.com"

# Gas and fee settings
FEE_AMOUNT_UNIBI="125"
FEE_AMOUNT_UNIBI="175"
GAS_LIMIT="7000"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ FEEDER_MNEMONIC="guard cream sadness conduct invite crumble clock pudding hole g
EXCHANGE_SYMBOLS_MAP='{"bitfinex": {"ubtc:unusd": "tBTCUSD", "ueth:unusd": "tETHUSD", "uusd:unusd": "tUSTUSD"}}'

# Gas and fee settings
FEE_AMOUNT_UNIBI="125"
FEE_AMOUNT_UNIBI="175"
GAS_LIMIT="7000"
```

Expand Down
2 changes: 1 addition & 1 deletion feeder/priceposter.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ func sendTx(
}

txFeeStr := os.Getenv("FEE_AMOUNT_UNIBI")
feeAmount := int64(125)
feeAmount := int64(175)
if txFeeStr != "" {
if v, err := strconv.ParseInt(txFeeStr, 10, 64); err == nil {
feeAmount = v
Expand Down
Loading