mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-26 13:39:37 +00:00
Correct forge fmt config
This commit is contained in:
parent
861a8352e5
commit
1b1aa74770
2 changed files with 2 additions and 6 deletions
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
|
@ -80,7 +80,7 @@ jobs:
|
||||||
cache: false
|
cache: false
|
||||||
|
|
||||||
- name: Run forge fmt
|
- name: Run forge fmt
|
||||||
run: FOUNDRY_FMT_SORT_INPUTS=false FOUNDRY_FMT_LINE_LENGTH=100 FOUNDRY_FMT_TABLE_WIDTH=2 FOUNDRY_FMT_BRACKET_SPACING=true FOUNDRY_FMT_INT_TYPES=preserve forge fmt --check $(find . -iname "*.sol")
|
run: FOUNDRY_FMT_SORT_INPUTS=false FOUNDRY_FMT_LINE_LENGTH=100 FOUNDRY_FMT_TAB_WIDTH=2 FOUNDRY_FMT_BRACKET_SPACING=true FOUNDRY_FMT_INT_TYPES=preserve forge fmt --check $(find . -iname "*.sol")
|
||||||
|
|
||||||
machete:
|
machete:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
@ -15,11 +15,7 @@ library Schnorr {
|
||||||
// message := the message signed
|
// message := the message signed
|
||||||
// c := Schnorr signature challenge
|
// c := Schnorr signature challenge
|
||||||
// s := Schnorr signature solution
|
// s := Schnorr signature solution
|
||||||
function verify(bytes32 px, bytes32 message, bytes32 c, bytes32 s)
|
function verify(bytes32 px, bytes32 message, bytes32 c, bytes32 s) internal pure returns (bool) {
|
||||||
internal
|
|
||||||
pure
|
|
||||||
returns (bool)
|
|
||||||
{
|
|
||||||
// ecrecover = (m, v, r, s) -> key
|
// ecrecover = (m, v, r, s) -> key
|
||||||
// We instead pass the following to obtain the nonce (not the key)
|
// We instead pass the following to obtain the nonce (not the key)
|
||||||
// Then we hash it and verify it matches the challenge
|
// Then we hash it and verify it matches the challenge
|
||||||
|
|
Loading…
Reference in a new issue