()
| 53 | } |
| 54 | |
| 55 | func (t *TokenSwapEntry) PackForClient() (string, error) { |
| 56 | unpackedToken := &UnpackedTokenType{ |
| 57 | Token: t.Token, |
| 58 | RpcContext: t.RpcContext, |
| 59 | } |
| 60 | return unpackedToken.Pack() |
| 61 | } |
| 62 | |
| 63 | func removeExpiredTokens() { |
| 64 | now := time.Now() |
no test coverage detected