You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A strange issue happened yesterday with calling getUnspentUtxos (with includeMempool=true) gRPC endpoint at greyh.at mainnet. From what we were able to gather from node's logs:
A transaction was rejected by the mempool due to reason: failed to validate input ... script exceeds maximum signature density (input script bytes...
After the validation failure, the inputs of the failed transaction were considered to be spent in the referenced gRPC call. (i.e., GRPC: Unary method /pb.bchrpc/SubmitTransaction invoked by 124.36.203.225:61776 errored: rpc error: code = InvalidArgument desc = tx rejected: output b21cee8cc87f5e472e004a6ba4a07c1990367a8d86aef89ea6699b5699501c10:2 already spent by transaction 42820bc8fb0280b5150d40ac32f1a63b380f5b97987a76899401ed92f95a321f in the memory pool)
The text was updated successfully, but these errors were encountered:
Noticing that non-final transactions are rejected as non-standard, which marks the inputs as spent. This behavior can have a negative impact on some types of applications.
A strange issue happened yesterday with calling
getUnspentUtxos
(withincludeMempool=true
) gRPC endpoint atgreyh.at
mainnet. From what we were able to gather from node's logs:A transaction was rejected by the mempool due to
reason: failed to validate input
...script exceeds maximum signature density (input script bytes...
After the validation failure, the inputs of the failed transaction were considered to be spent in the referenced gRPC call. (i.e.,
GRPC: Unary method /pb.bchrpc/SubmitTransaction invoked by 124.36.203.225:61776 errored: rpc error: code = InvalidArgument desc = tx rejected: output b21cee8cc87f5e472e004a6ba4a07c1990367a8d86aef89ea6699b5699501c10:2 already spent by transaction 42820bc8fb0280b5150d40ac32f1a63b380f5b97987a76899401ed92f95a321f in the memory pool
)The text was updated successfully, but these errors were encountered: