1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-26 12:29:06 +01:00

Renamed variables to make more sense.

This commit is contained in:
Kevin Serrano 2016-10-07 01:41:27 -07:00
parent d200ef4a10
commit 7c5ebb6a53
No known key found for this signature in database
GPG Key ID: 7CC862A58D2889B4

View File

@ -277,9 +277,9 @@ ConfigManager.prototype.getConfirmed = function () {
return ('isConfirmed' in data) && data.isConfirmed
}
ConfigManager.prototype.setTOSHash = function (version) {
ConfigManager.prototype.setTOSHash = function (hash) {
var data = this.getData()
data.TOSHash = version
data.TOSHash = hash
this.setData(data)
}