NethermindEth/starknet.go

Specific return type for BlockWithTxs and BlockWithTxHashes methods

Offen

#355 geöffnet am 22.09.2023

 (1 Kommentar) (0 Reaktionen) (0 zugewiesene Personen)Go (140 Forks)auto 404
help wanted

Repository-Metriken

Stars
 (177 Sterne)
PR-Merge-Metriken
 (PR-Metriken ausstehend)

Beschreibung

In https://github.com/NethermindEth/starknet.go/pull/354 a new type for blocks with only transaction hashes was created as requested on #347.

However, BlockWithTxs and BlockWithTxHashes methods still have as return type interface{} as these can return either a Block or a Pending Block in both cases. The idea is to replace interface{} with an specific type and do something similar as in TransactionByHash method (see here) with adaptTransaction

Contributor Guide