Skip to content
This repository has been archived by the owner on Nov 15, 2021. It is now read-only.

Updated Storage.Put() GAS calculation #111

Closed
wants to merge 1 commit into from
Closed
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 neo/SmartContract/ApplicationEngine.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def GetPriceForSysCall(self):
l1 = len(self.EvaluationStack.Peek(1).GetByteArray())
l2 = len(self.EvaluationStack.Peek(2).GetByteArray())

return int(((l1 + l2 - 1) / 1024 + 1) * 1000)
return int(((l1 + l2 - 1) * 1000) / 1024)

elif api == "Neo.Storage.Delete":
return 100
Expand Down