multi: replace ioutil.WriteFile

This commit is contained in:
erik
2023-06-14 11:33:44 +02:00
committed by ErikEk
parent ab83343c87
commit 789c6bac8c
13 changed files with 20 additions and 31 deletions

View File

@@ -6,7 +6,6 @@ import (
crand "crypto/rand"
"errors"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"sync/atomic"
@@ -216,7 +215,7 @@ func New(cfg *Config) (*Server, lnrpc.MacaroonPerms, error) {
if err != nil {
return nil, nil, err
}
err = ioutil.WriteFile(macFilePath, routerMacBytes, 0644)
err = os.WriteFile(macFilePath, routerMacBytes, 0644)
if err != nil {
_ = os.Remove(macFilePath)
return nil, nil, err