-
Notifications
You must be signed in to change notification settings - Fork 649
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
have verify_account_authority check passed-in keys #1384
Changes from 1 commit
7d44c3a
824ed4f
48fa400
c2b63f5
5db31f5
7e4e033
e03d329
673ac2b
f523ad6
b078310
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -663,9 +663,12 @@ class database_api | |
bool verify_authority( const signed_transaction& trx )const; | ||
|
||
/** | ||
* @return true if the signers have enough authority to authorize an account | ||
* @brief Verify that the public keys have enough authority to authorize a transaction | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why this change? There is no transaction in the API. |
||
* @param account_name_or_id the account to check | ||
* @param signers the public keys | ||
* @return true if the passed in keys have enough authority to authorize a transaction | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why this? There is no transaction in the API. |
||
*/ | ||
bool verify_account_authority( const string& account_name_or_id, const flat_set<public_key_type>& signers )const; | ||
bool verify_account_authority( const string& account_name_or_id, const flat_set<public_key_type>& signers )const; | ||
|
||
/** | ||
* Validates a transaction against the current state without broadcasting it on the network. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,4 +76,23 @@ BOOST_FIXTURE_TEST_SUITE(wallet_tests, database_fixture) | |
} FC_LOG_AND_RETHROW() | ||
} | ||
|
||
BOOST_AUTO_TEST_CASE(verify_account_authority) { | ||
try { | ||
|
||
ACTORS( (nathan) ); | ||
graphene::app::database_api db_api(db); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it's better to move these test cases to database_api_tests.cpp. |
||
|
||
// good keys | ||
flat_set<public_key_type> public_keys; | ||
public_keys.emplace(nathan_public_key); | ||
BOOST_CHECK(db_api.verify_account_authority( "nathan", public_keys)); | ||
|
||
// bad keys | ||
flat_set<public_key_type> bad_public_keys; | ||
bad_public_keys.emplace(public_key_type("BTS6MkMxwBjFWmcDjXRoJ4mW9Hd4LCSPwtv9tKG1qYW5Kgu4AhoZy")); | ||
BOOST_CHECK(!db_api.verify_account_authority( "nathan", bad_public_keys)); | ||
|
||
} FC_LOG_AND_RETHROW() | ||
} | ||
|
||
BOOST_AUTO_TEST_SUITE_END() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we maybe just remove this comment ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I tried (hence the space I accidentally added). It did not compile due to _db being used outside, plus some others. I was thinking of fixing all of it, but resisted the urge because I was unsure why it was originally commented out.