-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
multi: Remove stakepool ticket purchasing.
It was possible to set legacy stakepool options either through config or through various RPC parameters, however the options either did nothing or enabled behaviour which is no longer valid. Breaking changes: 1. Removed PoolAddress and PoolFee parameters from gRPCs `purchasetickets` and `runticketbuyer` 1. Removed PoolAddress and PoolFee parameters from json-RPC `purchaseticket` 1. Removed config flags `--pooladdress` and `--poolfees`
- Loading branch information
1 parent
0d7b09d
commit 2df01dc
Showing
18 changed files
with
184 additions
and
489 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
inputs = { | ||
nixpkgs.url = "nixpkgs/nixos-unstable"; | ||
}; | ||
|
||
outputs = { self, nixpkgs, ... }@inputs: | ||
let | ||
supportedSystems = [ | ||
"x86_64-linux" | ||
"aarch64-linux" | ||
"x86_64-darwin" | ||
"aarch64-darwin" | ||
]; | ||
forAllSystems = fn: | ||
nixpkgs.lib.genAttrs supportedSystems | ||
(system: fn { pkgs = import nixpkgs { inherit system; }; }); | ||
in { | ||
devShells = forAllSystems ({ pkgs }: { | ||
default = pkgs.mkShell { | ||
nativeBuildInputs = with pkgs; [ | ||
go_1_23 | ||
protobuf_28 | ||
]; | ||
}; | ||
}); | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.