pleasing the linter

Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
Jürgen Eckel 2024-03-07 17:12:38 +01:00
parent caf5dfdd93
commit 4849b8e7ed
No known key found for this signature in database
2 changed files with 1 additions and 2 deletions

View File

@ -135,7 +135,7 @@ func IssueNFTAsset(name string, machineAddress string, domain string) (assetID s
testMempoolAcceptResult := testMempoolAcceptResults[len(testMempoolAcceptResults)-1] testMempoolAcceptResult := testMempoolAcceptResults[len(testMempoolAcceptResults)-1]
if !testMempoolAcceptResult.Allowed { if !testMempoolAcceptResult.Allowed {
err = fmt.Errorf("not accepted by mempool: %+v %+v\n", testMempoolAcceptResult, signRawTransactionWithWalletResult) err = fmt.Errorf("not accepted by mempool: %+v %+v", testMempoolAcceptResult, signRawTransactionWithWalletResult)
return return
} }

View File

@ -65,7 +65,6 @@ func TestMachineNFTIssuance(t *testing.T) {
err := util.IssueMachineNFT(goCtx, &machine, "https", "testnet-assets.rddl.io", "register_asset") err := util.IssueMachineNFT(goCtx, &machine, "https", "testnet-assets.rddl.io", "register_asset")
assert.NoError(t, err) assert.NoError(t, err)
wg.Done() wg.Done()
}() }()
} }
wg.Wait() wg.Wait()