Skip to content

Commit

Permalink
use POST instead of GET (#367)
Browse files Browse the repository at this point in the history
* use POST instead of GET

* rm console print
  • Loading branch information
Marketen authored Oct 1, 2024
1 parent 9a7b932 commit 49df047
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/brain/src/modules/apiClients/beaconchain/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export class BeaconchainApi extends StandardApi {
}): Promise<BeaconchainValidatorFromStateGetResponse> {
try {
return await this.request({
method: "GET",
method: "POST",
endpoint: path.join(this.beaconchainEndpoint, "states", state, "validators", pubkey)
});
} catch (e) {
Expand Down

0 comments on commit 49df047

Please sign in to comment.