From 3379c70e63e2ee0c924a80b4e4c3e9b660be5e1c Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Tue, 27 Jun 2023 17:21:10 +0200 Subject: [PATCH] app/abi/manager.go: Some documentation --- app/abi/manager.go | 1 + 1 file changed, 1 insertion(+) diff --git a/app/abi/manager.go b/app/abi/manager.go index e62f7a2..976f161 100644 --- a/app/abi/manager.go +++ b/app/abi/manager.go @@ -31,6 +31,7 @@ func NewAbiManager(rdb *redis.Client, api *eos.API, id string) *AbiManager { } } +// Set or update an ABI in the cache. func (mgr *AbiManager) SetAbi(account eos.AccountName, abi *eos.ABI) error { return mgr.cache.Set(string(account), abi, time.Hour) }