ca070e21ef
* test the fixed rollback cmd - check the rollback cmd works in integration tests * Apply suggestions from code review * upstream merged * add changelog Co-authored-by: Freddy Caceres <facs95@gmail.com>
9 lines
208 B
Nix
9 lines
208 B
Nix
{ pkgs ? import ../../../nix { } }:
|
|
let ethermintd = (pkgs.callPackage ../../../. { });
|
|
in
|
|
ethermintd.overrideAttrs (oldAttrs: {
|
|
patches = oldAttrs.patches or [ ] ++ [
|
|
./broken-ethermintd.patch
|
|
];
|
|
})
|