Add signature input to tx table (#9)

This commit is contained in:
Justin Starry
2020-03-19 22:31:05 +08:00
committed by Michael Vines
parent 82543886fb
commit 237b3ae025
8 changed files with 167 additions and 28 deletions

View File

@@ -10,3 +10,7 @@ export function findGetParameter(parameterName: string): string | null {
});
return result;
}
export function assertUnreachable(x: never): never {
throw new Error("Unreachable!");
}