Skip to content

Commit

Permalink
chore: fix initialize state handler
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler committed Jun 12, 2024
1 parent 63121be commit 9fb7188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ant/src/process.lua
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ function process.handle(msg, ao)
function(msg)
local status, state = pcall(json.decode(msg.Data))
assert(status, "Invalid state provided")
local _, initResult = pcall(initialize.initializeState, state)
local _, initResult = pcall(initialize.initializeANTState, state)
ao.send({ Target = msg.From, Data = initResult })
end
)
Expand Down

0 comments on commit 9fb7188

Please sign in to comment.