Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] feat/parachain: disputes coordinator #3347

Closed
wants to merge 42 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
1f1367e
add queue
kanishkatn Jun 13, 2023
8847198
use rwmutex
kanishkatn Jul 5, 2023
3e99781
add tests
kanishkatn Aug 21, 2023
6ea2c83
add backend
kanishkatn Jun 19, 2023
94e6d14
resolve rebase issues
kanishkatn Aug 2, 2023
90b3cf0
cleanup
kanishkatn Aug 18, 2023
f1811e1
cleanup
kanishkatn Aug 23, 2023
115463a
add imports
kanishkatn Jun 21, 2023
466a526
resolve rebase issues
kanishkatn Aug 2, 2023
c4820ea
fix rebase issues
kanishkatn Sep 18, 2023
c253c9d
add queue
kanishkatn Jun 13, 2023
5bf6f08
add tests
kanishkatn Aug 21, 2023
f0e3d0a
add backend
kanishkatn Jun 19, 2023
ddcee28
resolve rebase issues
kanishkatn Aug 2, 2023
018af5f
cleanup
kanishkatn Aug 18, 2023
9b5ec4a
cleanup
kanishkatn Aug 23, 2023
b36b7e4
add lru cache
kanishkatn Jul 31, 2023
04b61b1
add candidates
kanishkatn Jul 31, 2023
d07ad8d
add scrapper
kanishkatn Aug 1, 2023
8e4b832
use lrucache from lib
kanishkatn Aug 4, 2023
dca5889
init scraper
kanishkatn Aug 10, 2023
0ccd628
replace google btree
kanishkatn Aug 11, 2023
64e8cb1
resolve rebase issues
kanishkatn Aug 23, 2023
42db003
handle todos
kanishkatn Aug 28, 2023
78a3a63
add tests
kanishkatn Aug 29, 2023
ec48cc9
cleanup
kanishkatn Sep 14, 2023
f1b2e72
add queue
kanishkatn Jun 13, 2023
f3f5794
add backend
kanishkatn Jun 19, 2023
203333b
resolve rebase issues
kanishkatn Aug 2, 2023
ce83314
add lru cache
kanishkatn Jul 31, 2023
d316c18
use lrucache from lib
kanishkatn Aug 4, 2023
b558f8d
add spam slots
kanishkatn Jun 21, 2023
968d248
make thread safe, add tests
kanishkatn Jun 27, 2023
8e7aeb5
add benchmark
kanishkatn Jun 28, 2023
af73bb3
review suggestions
kanishkatn Jul 3, 2023
ae41f35
lint
kanishkatn Jul 5, 2023
137ede1
lint, review suggestions
kanishkatn Jul 5, 2023
9e7b234
add disputes coordinator
kanishkatn Jun 20, 2023
b4c444f
resolve rebase issues
kanishkatn Sep 19, 2023
b97f834
process onchain votes
kanishkatn Sep 28, 2023
84845cc
handle incoming
kanishkatn Sep 28, 2023
c327608
finish processors
kanishkatn Oct 5, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
add queue
  • Loading branch information
kanishkatn committed Sep 18, 2023
commit 1f1367eb4637274c2459eeccc2de437be9723565
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -17,6 +17,7 @@ require (
github.com/fatih/color v1.15.0
github.com/go-playground/validator/v10 v10.14.1
github.com/golang/mock v1.6.0
github.com/google/btree v1.0.0
github.com/google/go-cmp v0.5.9
github.com/google/uuid v1.3.0
github.com/gorilla/mux v1.8.0
1 change: 1 addition & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -285,6 +285,7 @@ github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEW
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb h1:PBC98N2aIaM3XXiurYmW7fx4GZkL8feAMVq7nEjURHk=
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
github.com/google/btree v1.0.0 h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo=
github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
github.com/google/flatbuffers v23.1.21+incompatible h1:bUqzx/MXCDxuS0hRJL2EfjyZL3uQrPbMocUa8zGqsTA=
github.com/google/flatbuffers v23.1.21+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8=