*: fix whitespace errors

leading/trailing newlines
This commit is contained in:
Roman Khimov 2021-05-12 22:51:41 +03:00
parent 6fea16451a
commit c4e084b0d8
36 changed files with 0 additions and 36 deletions

View file

@ -42,7 +42,6 @@ func getIntWithKey(id int32, dao dao.DAO, key []byte) int64 {
si := dao.GetStorageItem(id, key)
if si == nil {
panic(fmt.Errorf("item with id = %d and key = %s is not initialized", id, hex.EncodeToString(key)))
}
return bigint.FromBytes(si).Int64()
}