Closed liuyangc3 closed 2 years ago
json rpc docs says
transactionCount: <u64 | null>, total number of transactions processed without error since genesis
https://docs.solana.com/developing/clients/jsonrpc-api#getepochinfo
and code
https://github.com/solana-labs/solana/blob/master/rpc/src/rpc.rs#L2484 https://github.com/solana-labs/solana/blob/master/sdk/src/epoch_info.rs#L22
I think it is a option value so I make it nullable
json rpc docs says
transactionCount: <u64 | null>, total number of transactions processed without error since genesis
https://docs.solana.com/developing/clients/jsonrpc-api#getepochinfo
and code
https://github.com/solana-labs/solana/blob/master/rpc/src/rpc.rs#L2484 https://github.com/solana-labs/solana/blob/master/sdk/src/epoch_info.rs#L22
I think it is a option value so I make it nullable
Thank you
Why use
*uint64
instead ofuint64
?