Skip to content

Commit

Permalink
feat(client): rename copy_with_transaction
Browse files Browse the repository at this point in the history
BREAKING CHANGE: rename copy_with_transaction to clone_with_transaction
  • Loading branch information
fMeow committed Mar 28, 2021
1 parent 5a4a565 commit 2c81c78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pub trait ClientExt: Sync + Clone {
where
Self: Sized;

fn copy_with_transaction(&self, transaction_id: String) -> Result<Self, ClientError>
fn clone_with_transaction(&self, transaction_id: String) -> Result<Self, ClientError>
where
Self: Sized;

Expand Down

0 comments on commit 2c81c78

Please sign in to comment.