10 lines
191 B
Go
10 lines
191 B
Go
package trade
|
|
|
|
// Set stores & sends a value to all verified peers
|
|
func (t *KV) Set(k string, v any) error {
|
|
// store in local cache
|
|
t.local[k] = v
|
|
// for server in servers
|
|
|
|
return err
|
|
}
|