Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Merge branch 'dp/chore/kvdb-no-default-column' of github.com:parityte…
Browse files Browse the repository at this point in the history
…ch/parity-ethereum into dp/chore/kvdb-no-default-column

* 'dp/chore/kvdb-no-default-column' of github.com:paritytech/parity-ethereum:
  Update ethcore/db/src/db.rs
  • Loading branch information
dvdplm committed Dec 19, 2019
2 parents a47efd8 + 32e8685 commit f7d9a77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethcore/db/src/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ pub trait Writable {
/// Writes the value into the database.
fn write<T, R>(&mut self, col: u32, key: &dyn Key<T, Target = R>, value: &T) where T: rlp::Encodable, R: AsRef<[u8]>;

/// Deletes key from the databse.
/// Deletes key from the database.
fn delete<T, R>(&mut self, col: u32, key: &dyn Key<T, Target = R>) where T: rlp::Encodable, R: AsRef<[u8]>;

/// Writes the value into the database and updates the cache.
Expand Down

0 comments on commit f7d9a77

Please sign in to comment.