Skip to content

Commit

Permalink
fix(gar): fix gar tag check for auto-stake
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler committed Jun 27, 2024
1 parent de7b54d commit f221dbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ Handlers.add(
delegateRewardShareRatio = tonumber(msg.Tags["Delegate-Reward-Share-Ratio"])
or gateway.settings.delegateRewardShareRatio,
properties = msg.Tags.Properties or gateway.settings.properties,
autoStake = msg.Tags["Auto-Stkae"] == "true" or gateway.settings.autoStake,
autoStake = msg.Tags["Auto-Stake"] == "true" or gateway.settings.autoStake,
}
local observerAddress = msg.Tags["Observer-Address"] or gateway.observerAddress
local status, result =
Expand Down

0 comments on commit f221dbb

Please sign in to comment.