diff options
author | Dan Laine <[email protected]> | 2020-10-30 12:55:53 -0400 |
---|---|---|
committer | Dan Laine <[email protected]> | 2020-10-30 12:55:53 -0400 |
commit | 5b12d3fa21635145cb8a752b56477e22fca77a5b (patch) | |
tree | b789cd27fc5a0795057f1c1ccbf17834a8af18c0 /plugin/evm/user.go | |
parent | 4023ae20cb2b7cd228a68670bc55a6c9cdbabc36 (diff) |
remove these ID calls: Key(), Bytes(), Equals(), NewID(), IsZero()v0.3.11-update-idupdate-id
Diffstat (limited to 'plugin/evm/user.go')
-rw-r--r-- | plugin/evm/user.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/evm/user.go b/plugin/evm/user.go index b751634..152156d 100644 --- a/plugin/evm/user.go +++ b/plugin/evm/user.go @@ -15,7 +15,7 @@ import ( // Key in the database whose corresponding value is the list of // addresses this user controls -var addressesKey = ids.Empty.Bytes() +var addressesKey = ids.Empty[:] var ( errDBNil = errors.New("db uninitialized") |