From 504c4650bd7c3577cdfae25487fce6e46205a78a Mon Sep 17 00:00:00 2001 From: jwasinger Date: Mon, 14 Jul 2025 13:14:16 +0900 Subject: [PATCH] Update signer/core/apitypes/types.go --- signer/core/apitypes/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/signer/core/apitypes/types.go b/signer/core/apitypes/types.go index 5ed9710f59..9a32312d46 100644 --- a/signer/core/apitypes/types.go +++ b/signer/core/apitypes/types.go @@ -151,7 +151,7 @@ func (args *SendTxArgs) ToTransaction() (*types.Transaction, error) { al = *args.AccessList } if to == nil { - return nil, fmt.Errorf("the to address shouldn't be null in blob transaction") + return nil, fmt.Errorf("transaction recipient must be set for blob transactions") } data = &types.BlobTx{ To: *to,