Skip to content

Commit

Permalink
s/getRecentBlockhash/getLatestBlockhash/ in the docs (#3411)
Browse files Browse the repository at this point in the history
Addresses #2859.
  • Loading branch information
steveluscher authored Oct 21, 2024
1 parent e90ed59 commit 7b5f331
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,8 @@ function selectShard(method: string): RpcTransport {
case 'getAccountInfo':
case 'getBalance':
return transportA;
case 'getLatestBlockhash':
case 'getTransaction':
case 'getRecentBlockhash':
return transportB;
case 'sendTransaction':
return transportC;
Expand Down
2 changes: 1 addition & 1 deletion packages/rpc-transport-http/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ function selectShard(method: string): RpcTransport {
case 'getAccountInfo':
case 'getBalance':
return transportA;
case 'getLatestBlockhash':
case 'getTransaction':
case 'getRecentBlockhash':
return transportB;
case 'sendTransaction':
return transportC;
Expand Down

0 comments on commit 7b5f331

Please sign in to comment.