Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
61 commits
Select commit Hold shift + click to select a range
50562c0
stash precompile changes in other branch and push pallet changes leak…
peektism Oct 20, 2022
9395e66
still leaking std
peektism Oct 20, 2022
8ed14e7
using sp std phantomdata did not fix
peektism Oct 21, 2022
315116a
ty @nanocryk for std leak fix
peektism Oct 21, 2022
8f24362
init referenda precompile needs tryfrom u8 for origins
peektism Oct 23, 2022
d83be8e
referenda submit precompile fn
peektism Oct 23, 2022
21ffc60
signed extrinsics for referenda precompile
peektism Oct 23, 2022
0eb6dc3
preimage precompile
peektism Oct 24, 2022
09e90db
init conviction voting precompile
peektism Oct 24, 2022
138a848
referenda delegate undelegate unlock
peektism Oct 25, 2022
8e1a709
fixes
peektism Oct 26, 2022
276d8a4
fix
peektism Oct 26, 2022
a940199
clean
peektism Oct 26, 2022
a9ab0e3
improve revert reasons for class and index inputs
peektism Oct 26, 2022
9067ba0
clean
peektism Oct 26, 2022
467e845
init accessors and clean
peektism Nov 3, 2022
c6c8d1b
Merge branch 'master' into amar-gov2-precompiles
peektism Nov 7, 2022
4d8f70a
referenda precompile
peektism Nov 16, 2022
a234655
clean
peektism Nov 16, 2022
def4e70
Merge branch 'master' into amar-gov2-precompiles
peektism Nov 21, 2022
e86512c
clean and init referenda precompile interface
peektism Nov 21, 2022
66e5164
into master
peektism Jan 2, 2023
c389722
fix merge
peektism Jan 4, 2023
5bb1673
try mock referenda precompile but did not succeed
peektism Jan 4, 2023
e7c765b
save
peektism Jan 6, 2023
c5e2220
fix referenda mock
nanocryk Jan 9, 2023
d05803f
add dot sol files for preimage and voting
peektism Jan 9, 2023
b784aca
add to moonbase precompiles
peektism Jan 9, 2023
f1c55b5
fix
peektism Jan 10, 2023
58620ed
precompile existence test fix
peektism Jan 10, 2023
6ed417f
update solidity addresses as per moonbase config
peektism Jan 10, 2023
2fcef74
rename standard vote to vote in conviction voting pallet
peektism Jan 11, 2023
8723589
start moving origins out of pallet and using additional generic instead
peektism Jan 11, 2023
a1f469e
fix finish moving pallet custom origins back into runtime
peektism Jan 11, 2023
3e4e868
into master
peektism Jan 11, 2023
72f78a1
Merge branch 'master' into amar-gov2-precompiles
librelois Jan 12, 2023
e1f84ca
add opengov precompiles in proxy evm filter
librelois Jan 12, 2023
6064e97
SolidityConvert no longer necessary
peektism Jan 12, 2023
19c2914
rm SolidityConvert and add Conviction enum
peektism Jan 12, 2023
046a7ac
use trackId as input for submit instead of origin and convert from tr…
peektism Jan 12, 2023
7839709
camelCase error msgs
peektism Jan 12, 2023
3357394
Update precompiles/referenda/src/lib.rs
peektism Jan 12, 2023
5efa9d5
fix conviction precompile interface
peektism Jan 12, 2023
145f6f9
fix referenda precompile interface
peektism Jan 12, 2023
694378d
test to ensure all tracks have min enactment period less than vote lo…
peektism Jan 12, 2023
9bfd9ff
update tracks based on wiki
peektism Jan 12, 2023
a11ee95
revert accidental commit
peektism Jan 12, 2023
a1941ec
fix referenda precompile unit tests
peektism Jan 12, 2023
6e99180
update config based on polkadot 6372 gov2 config tweaks
peektism Jan 12, 2023
83e5a1c
fix
peektism Jan 12, 2023
362fef7
Configure moonriver OpenGov (#2038)
peektism Jan 17, 2023
af079a9
into master
peektism Jan 17, 2023
db81510
remove TryFrom u8 impl for Origin unused
peektism Jan 17, 2023
d3a8bda
split convictionVoting vote into voteYes and voteNo so can add voteAb…
peektism Jan 17, 2023
4c3e81b
fix consistent conversion test
peektism Jan 17, 2023
fd381a7
Merge branch 'master' into amar-gov2-precompiles
peektism Jan 17, 2023
be79f7c
follow suggestions
peektism Jan 17, 2023
dea9998
add doc note to removeOtherVote
peektism Jan 17, 2023
052a56e
into master
peektism Jan 17, 2023
d4782eb
fix
peektism Jan 17, 2023
3cccdb4
Merge branch 'master' into amar-gov2-precompiles
crystalin Jan 18, 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
Prev Previous commit
Next Next commit
fix
  • Loading branch information
peektism committed Jan 17, 2023
commit d4782eb98bb6db32993ccc489163a99e66f57300
2 changes: 1 addition & 1 deletion runtime/moonbase/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ fn is_governance_precompile(precompile_name: &precompiles::PrecompileName) -> bo
| PrecompileName::TreasuryCouncilInstance
| PrecompileName::ReferendaPrecompile
| PrecompileName::ConvictionVotingPrecompile
| PrecompileName::PreimagePrecompile,
| PrecompileName::PreimagePrecompile
| PrecompileName::OpenTechCommitteeInstance,
)
}
Expand Down